aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/i386.h6
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3388011..ac23efa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2000-04-03 Philipp Thomas <pthomas@suse.de>
+
+ * i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
+
Mon Apr 3 00:02:59 2000 Brad Lucier <lucier@math.purdue.edu>
* Makefile.in (alias.o): Depend on $(TREE_H).
diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h
index 2a4c1ca..76bbef0 100644
--- a/gcc/config/i386/i386.h
+++ b/gcc/config/i386/i386.h
@@ -265,11 +265,11 @@ extern const int x86_promote_hi_regs;
"Do not inline all known string operations" }, \
{ "push-args", -MASK_NO_PUSH_ARGS, \
"Use push instructions to save outgoing arguments" }, \
- { "no-push-args", MASK_NO_PUSH_ARGS, "" \
- "UDo not use push instructions to save outgoing arguments" }, \
+ { "no-push-args", MASK_NO_PUSH_ARGS, \
+ "Do not use push instructions to save outgoing arguments" }, \
{ "accumulate-outgoing-args", MASK_ACCUMULATE_OUTGOING_ARGS, \
"Use push instructions to save outgoing arguments" }, \
- { "no-accumulate-outgoing-args",-MASK_ACCUMULATE_OUTGOING_ARGS, "" \
+ { "no-accumulate-outgoing-args",-MASK_ACCUMULATE_OUTGOING_ARGS, \
"Do not use push instructions to save outgoing arguments" }, \
SUBTARGET_SWITCHES \
{ "", TARGET_DEFAULT, 0 }}