From: Nick Clifton Date: Wed, 8 Jun 2005 15:34:15 +0000 (+0000) Subject: (use_parallel): Change default value from 1 to 0. X-Git-Tag: binutils-2_16_1~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=973c7a6ec7f4b2201e66329fdb9c58c646e44a0e;p=thirdparty%2Fbinutils-gdb.git (use_parallel): Change default value from 1 to 0. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 1f84ae6c9f5..dc38a3b7cfa 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-06-08 Kazuhiro Inaoka + + * config/tc-m32r.c (use_parallel): Change default value from 1 to 0. + 2005-05-19 Jan Beulich * 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 ed729223c2f..bf78220d95a 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;