From: Jan Hubicka Date: Sat, 25 Aug 2001 13:49:51 +0000 (+0200) Subject: * i386.h (no-accumulate-outgoing-args): Use proper mask. X-Git-Tag: prereleases/libstdc++-3.0.95~2437 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3fe11e62408ef839371ae20b5c666219de209a9;p=thirdparty%2Fgcc.git * i386.h (no-accumulate-outgoing-args): Use proper mask. From-SVN: r45171 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 07285d349148..e4786c2440c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Aug 25 15:46:51 CEST 2001 Jan Hubicka + + * i386.h (no-accumulate-outgoing-args): Use proper mask. + 2001-08-24 David Edelsohn * config/rs6000/rs6000.c (rs6000_initialize_trampoline): Function diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index bc5fd0875c43..9251150ce246 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, \