diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2005-07-06 21:08:02 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@gcc.gnu.org> | 2005-07-06 21:08:02 +0000 |
commit | 1d8eeb6305f34833ff3ca867ace263ac5a46645a (patch) | |
tree | 72f0defa1895cf089d7787f10f4d92c5a40899b9 /gcc/opts.c | |
parent | c42adccb1a99b85613384a3847264c3cc51a12d7 (diff) | |
download | gcc-1d8eeb6305f34833ff3ca867ace263ac5a46645a.zip gcc-1d8eeb6305f34833ff3ca867ace263ac5a46645a.tar.gz gcc-1d8eeb6305f34833ff3ca867ace263ac5a46645a.tar.bz2 |
Removal of -fforce-mem.
OKed by Richard Henderson.
From-SVN: r101666
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -560,7 +560,6 @@ decode_options (unsigned int argc, const char **argv) flag_rerun_cse_after_loop = 1; flag_rerun_loop_opt = 1; flag_caller_saves = 1; - flag_force_mem = 1; flag_peephole2 = 1; #ifdef INSN_SCHEDULING flag_schedule_insns = 1; @@ -1042,6 +1041,10 @@ common_handle_option (size_t scode, const char *arg, int value) flag_pedantic_errors = pedantic = 1; break; + case OPT_fforce_mem: + warning (0, "-f[no-]force-mem is nop and option will be removed in 4.2"); + break; + default: /* If the flag was handled in a standard way, assume the lack of processing here is intentional. */ |