diff options
author | Philipp Thomas <pthomas@suse.de> | 2000-04-03 06:08:44 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-04-03 00:08:44 -0600 |
commit | 053f11267ab96a04ba8f5fe6181760cd19bf52cc (patch) | |
tree | 885c82c051c39249a31779e75db5a782192242f7 /gcc | |
parent | 037a17406136580c606beb51bf42021a90d7063b (diff) | |
download | gcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.zip gcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.tar.gz gcc-053f11267ab96a04ba8f5fe6181760cd19bf52cc.tar.bz2 |
* i386.h (TARGET_SWITCHES): Remove bogus empty strings, fix typo.
From-SVN: r32873
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 6 |
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 }} |