This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] m32r-*-as must use non-parallel mode as default.


Hi Nick,

We had a miss at a default value of parallel mode flag.
It must use non-parallel mode as default.
Please commit this patch into binutils_2.15 branch , binutils_2.16 branch and mainline.


Regards,

Kazuhiro Inaoka

gas/ChangeLog

2005-06-08 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>

* config/tc-m32r.c (use_parallel): Changed a default value from 1 to 0.
Index: tc-m32r.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-m32r.c,v
retrieving revision 1.44
diff -u -r1.44 tc-m32r.c
--- tc-m32r.c	7 Jun 2005 17:54:17 -0000	1.44
+++ tc-m32r.c	8 Jun 2005 02:57:02 -0000
@@ -120,7 +120,7 @@
 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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]