diff options
author | Nick Clifton <nickc@redhat.com> | 2005-06-08 15:34:48 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-06-08 15:34:48 +0000 |
commit | 90476ce747b27795cb9e1288c486377eac23e9f0 (patch) | |
tree | 609c598b068880af5534ba53fb64380ebffa6468 | |
parent | dd3ca347a724fb4747ccb0887e128b79e8ebbde7 (diff) | |
download | fsf-binutils-gdb-binutils-2_15-branch.zip fsf-binutils-gdb-binutils-2_15-branch.tar.gz fsf-binutils-gdb-binutils-2_15-branch.tar.bz2 |
(use_parallel): Change default value from 1 to 0.binutils-2_15-branch
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-m32r.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index c7c2156..209d3bb 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,4 +1,9 @@ +2005-06-08 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + * config/tc-m32r.c (use_parallel): Change default value from 1 to 0. + 2004-08-18 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de> + * config/tc-mips.c (append_insn): Handle delay slots in branch likely correctly. diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c index fb1c613..919904f 100644 --- a/gas/config/tc-m32r.c +++ b/gas/config/tc-m32r.c @@ -127,7 +127,7 @@ static int warn_explicit_parallel_conflicts = 1; static int ignore_parallel_conflicts = 0; /* Non-zero if insns can be made parallel. */ -static int use_parallel = 1; +static int use_parallel = 0; /* Non-zero if optimizations should be performed. */ static int optimize; |