aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2004-03-29 20:40:29 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2004-03-29 20:40:29 +0000
commit43537bf62f9e1eb15a0a5076a67377f6e69434c5 (patch)
tree04d3fae12a9e6766cc9705f8c6946cf8e4b57330 /gcc
parent93604b1a023480f2e1547ef1955fdee284771048 (diff)
downloadgcc-43537bf62f9e1eb15a0a5076a67377f6e69434c5.zip
gcc-43537bf62f9e1eb15a0a5076a67377f6e69434c5.tar.gz
gcc-43537bf62f9e1eb15a0a5076a67377f6e69434c5.tar.bz2
cris.h: Correct #ifdef to test for HAVE_AS_NO_MUL_BUG_ABORT_OPTION...
* config/cris/cris.h: Correct #ifdef to test for HAVE_AS_NO_MUL_BUG_ABORT_OPTION, not HAVE_AS_MUL_BUG_ABORT_OPTION. From-SVN: r80065
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/cris/cris.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 28a6353..bd2c1e3 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-29 Hans-Peter Nilsson <hp@axis.com>
+
+ * config/cris/cris.h: Correct #ifdef to test for
+ HAVE_AS_NO_MUL_BUG_ABORT_OPTION, not
+ HAVE_AS_MUL_BUG_ABORT_OPTION.
+
2004-03-29 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* function.c (put_var_into_stack): If old RTL was ADDRESSOF, update
diff --git a/gcc/config/cris/cris.h b/gcc/config/cris/cris.h
index da5ab7f..302484c 100644
--- a/gcc/config/cris/cris.h
+++ b/gcc/config/cris/cris.h
@@ -171,7 +171,7 @@ extern const char *cris_elinux_stacksize_str;
%{!melinux:%{!maout|melf:%{!fno-vtable-gc:-fvtable-gc}}}}}". */
#define CC1PLUS_SPEC ""
-#ifdef HAVE_AS_MUL_BUG_ABORT_OPTION
+#ifdef HAVE_AS_NO_MUL_BUG_ABORT_OPTION
#define MAYBE_AS_NO_MUL_BUG_ABORT \
"%{mno-mul-bug-workaround:-no-mul-bug-abort} "
#else