diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2015-02-10 17:44:27 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2015-02-10 16:44:27 +0000 |
commit | 082908e33d11405196e37f2a6feaefae7e013cd4 (patch) | |
tree | c909d228a0caf8de9c03ed7c51a46a5e9a52b140 | |
parent | d90cae086f06c358426a3138513c35c79de5f4a4 (diff) | |
download | gcc-082908e33d11405196e37f2a6feaefae7e013cd4.zip gcc-082908e33d11405196e37f2a6feaefae7e013cd4.tar.gz gcc-082908e33d11405196e37f2a6feaefae7e013cd4.tar.bz2 |
* common.opt (fstack-reuse): Mark as optimization.
From-SVN: r220588
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/common.opt | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5da067e..1e913da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2015-02-10 Jan Hubicka <hubicka@ucw.cz> + * common.opt (fstack-reuse): Mark as optimization. + +2015-02-10 Jan Hubicka <hubicka@ucw.cz> + PR ipa/64982 * cgraphunit.c (cgraph_node::expand_thunk): Look for stdarg thunks. diff --git a/gcc/common.opt b/gcc/common.opt index 262481f..cf4e503 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -1372,7 +1372,7 @@ Common Report Var(flag_if_conversion2) Optimization Perform conversion of conditional jumps to conditional execution fstack-reuse= -Common Joined RejectNegative Enum(stack_reuse_level) Var(flag_stack_reuse) Init(SR_ALL) +Common Joined RejectNegative Enum(stack_reuse_level) Var(flag_stack_reuse) Init(SR_ALL) Optimization -fstack-reuse=[all|named_vars|none] Set stack reuse level for local variables. Enum |