aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Thomas <pthomas@suse.de>2000-04-03 06:08:44 +0000
committerJeff Law <law@gcc.gnu.org>2000-04-03 00:08:44 -0600
commit053f11267ab96a04ba8f5fe6181760cd19bf52cc (patch)
tree885c82c051c39249a31779e75db5a782192242f7
parent037a17406136580c606beb51bf42021a90d7063b (diff)
downloadgcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.zip
gcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.tar.gz
gcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.tar.bz2
* i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
From-SVN: r32873
-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 }}