From: Nick Clifton Date: Wed, 8 Jun 2005 15:34:48 +0000 (+0000) Subject: (use_parallel): Change default value from 1 to 0. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90476ce747b27795cb9e1288c486377eac23e9f0;p=thirdparty%2Fbinutils-gdb.git (use_parallel): Change default value from 1 to 0. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index c7c21569a71..209d3bb9561 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,4 +1,9 @@ +2005-06-08 Kazuhiro Inaoka + + * config/tc-m32r.c (use_parallel): Change default value from 1 to 0. + 2004-08-18 Thiemo Seufer + * 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 fb1c61354fb..919904fc15a 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;