(use_parallel): Change default value from 1 to 0.

This commit is contained in:
Nick Clifton 2005-06-08 14:39:54 +00:00
parent b2be201308
commit 6858915aa0
2 changed files with 5 additions and 1 deletions

View file

@ -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>

View file

@ -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;