aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-12-07 19:11:31 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-12-07 19:11:31 +0000
commitaad89cd08965cca789ad2d97f67f0ca459707b0e (patch)
tree8a66c8ef2ec50c33050be537f497a6b0db94fd63 /gcc
parent72f69ddf21cbf51560e6da8d9a534d25a1e72a61 (diff)
downloadgcc-aad89cd08965cca789ad2d97f67f0ca459707b0e.zip
gcc-aad89cd08965cca789ad2d97f67f0ca459707b0e.tar.gz
gcc-aad89cd08965cca789ad2d97f67f0ca459707b0e.tar.bz2
re PR middle-end/34382 (-fforce-addr completely broken)
2007-12-07 Richard Guenther <rguenther@suse.de> PR middle-end/34382 * opts.c (common_handle_option): Handle OPT_fforce_addr. From-SVN: r130693
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/opts.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1154d6f..65c56ba 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-07 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/34382
+ * opts.c (common_handle_option): Handle OPT_fforce_addr.
+
2007-12-07 Aldy Hernandez <aldyh@redhat.com>
* m32c.h (LEGITIMIZE_ADDRESS): Use WIN instead of win.
diff --git a/gcc/opts.c b/gcc/opts.c
index 26dbecb..90408b5 100644
--- a/gcc/opts.c
+++ b/gcc/opts.c
@@ -1778,6 +1778,7 @@ common_handle_option (size_t scode, const char *arg, int value,
case OPT_frerun_loop_opt:
case OPT_fstrength_reduce:
case OPT_ftree_store_copy_prop:
+ case OPT_fforce_addr:
/* These are no-ops, preserved for backward compatibility. */
break;