aboutsummaryrefslogtreecommitdiff
path: root/gcc/common.opt
diff options
context:
space:
mode:
authorEnkovich Ilya <ilya.enkovich@intel.com>2011-12-21 11:52:27 +0000
committerKirill Yukhin <kyukhin@gcc.gnu.org>2011-12-21 11:52:27 +0000
commit26cd9add744f5649af087552808b388c3109b53a (patch)
tree5a0567e5d4418bbaeb05479b5f83eb010f0605fb /gcc/common.opt
parent76f734d8f50612486c0eb696468582fce0128f92 (diff)
downloadgcc-26cd9add744f5649af087552808b388c3109b53a.zip
gcc-26cd9add744f5649af087552808b388c3109b53a.tar.gz
gcc-26cd9add744f5649af087552808b388c3109b53a.tar.bz2
re PR target/50038 (redundant zero extensions)
gcc/ 2011-12-21 Enkovich Ilya <ilya.enkovich@intel.com> PR target/50038 * implicit-zee.c: Delete. * ree.c: New file. * Makefile.in: Replace implicit-zee.c with ree.c. * config/i386/i386.c (ix86_option_override_internal): Rename flag_zee to flag_ree. * common.opt (fzee): Ignored. (free): New. * passes.c (init_optimization_passes): Replace pass_implicit_zee with pass_ree. * tree-pass.h (pass_implicit_zee): Delete. (pass_ree): New. * timevar.def (TV_ZEE): Delete. (TV_REE): New. * doc/invoke.texi: Add -free description. gcc/testsuite/ 2011-12-21 Enkovich Ilya <ilya.enkovich@intel.com> PR target/50038 From-SVN: r182574
Diffstat (limited to 'gcc/common.opt')
-rw-r--r--gcc/common.opt8
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/common.opt b/gcc/common.opt
index 55d3f2d..2a2c679 100644
--- a/gcc/common.opt
+++ b/gcc/common.opt
@@ -1781,8 +1781,12 @@ Common Ignore
Does nothing. Preserved for backward compatibility.
fzee
-Common Report Var(flag_zee) Init(0)
-Eliminate redundant zero extensions on targets that support implicit extensions.
+Common Ignore
+Does nothing. Preserved for backward compatibility.
+
+free
+Common Report Var(flag_ree) Init(0)
+Turn on Redundant Extensions Elimination pass.
fshow-column
Common Report Var(flag_show_column) Init(1)