diff options
author | Nick Clifton <nickc@redhat.com> | 2005-06-08 14:39:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-06-08 14:39:54 +0000 |
commit | 6858915aa0f5cfc966c353f851ed7fc7bdf8ae15 (patch) | |
tree | 69d7a81e14326df991545b29089bcd232d112762 /gas | |
parent | b2be201308a47a9c18457798cbe91c17223e6dad (diff) | |
download | gdb-6858915aa0f5cfc966c353f851ed7fc7bdf8ae15.zip gdb-6858915aa0f5cfc966c353f851ed7fc7bdf8ae15.tar.gz gdb-6858915aa0f5cfc966c353f851ed7fc7bdf8ae15.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 adc7095..4d2c48f 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-06-07 Aldy Hernandez <aldyh@redhat.com> Michael Snyder <msnyder@redhat.com> Stan Cox <scox@redhat.com> diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c index 83f0853..5f17337 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; |