diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-25 13:49:51 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-25 13:49:51 +0000 |
| commit | 03674bc344a1d550d4340e59c55acaf5b1d1c380 (patch) | |
| tree | df3ae4c7d6f29e5b7aca4c5ebe7df81930f1e36c /gcc | |
| parent | 1ff9926e06efbeb6472c9e5b28147c91ebfc26df (diff) | |
| download | ppe42-gcc-03674bc344a1d550d4340e59c55acaf5b1d1c380.tar.gz ppe42-gcc-03674bc344a1d550d4340e59c55acaf5b1d1c380.zip | |
* i386.h (no-accumulate-outgoing-args): Use proper mask.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45171 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07285d34914..e4786c2440c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Aug 25 15:46:51 CEST 2001 Jan Hubicka <jh@suse.cz> + + * i386.h (no-accumulate-outgoing-args): Use proper mask. + 2001-08-24 David Edelsohn <edelsohn@gnu.org> * config/rs6000/rs6000.c (rs6000_initialize_trampoline): Function diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index bc5fd0875c4..9251150ce24 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -330,7 +330,7 @@ extern const int x86_epilogue_using_move; N_("Do not use push instructions to save outgoing arguments") }, \ { "accumulate-outgoing-args", MASK_ACCUMULATE_OUTGOING_ARGS, \ N_("Use push instructions to save outgoing arguments") }, \ - { "no-accumulate-outgoing-args",-MASK_ACCUMULATE_OUTGOING_ARGS, \ + { "no-accumulate-outgoing-args",MASK_NO_ACCUMULATE_OUTGOING_ARGS, \ N_("Do not use push instructions to save outgoing arguments") }, \ { "mmx", MASK_MMX, N_("Support MMX builtins") }, \ { "no-mmx", -MASK_MMX, \ |

