diff options
author | Nick Clifton <nickc@redhat.com> | 2005-06-08 15:34:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-06-08 15:34:15 +0000 |
commit | 973c7a6ec7f4b2201e66329fdb9c58c646e44a0e (patch) | |
tree | c52703d285d387d0bc928a29177480e342b3d20f /gas | |
parent | 3189b28ff4430ea39033993d373f2d5c34b2530c (diff) | |
download | gdb-973c7a6ec7f4b2201e66329fdb9c58c646e44a0e.zip gdb-973c7a6ec7f4b2201e66329fdb9c58c646e44a0e.tar.gz gdb-973c7a6ec7f4b2201e66329fdb9c58c646e44a0e.tar.bz2 |
(use_parallel): Change default value from 1 to 0.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-m32r.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 1f84ae6..dc38a3b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-06-08 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com> + + * config/tc-m32r.c (use_parallel): Change default value from 1 to 0. + 2005-05-19 Jan Beulich <jbeulich@novell.com> * config/tc-ia64.c (dot_endp): Don't use global symbol for unwind diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c index ed72922..bf78220 100644 --- a/gas/config/tc-m32r.c +++ b/gas/config/tc-m32r.c @@ -120,7 +120,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; |