diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-29 11:00:58 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-29 11:00:58 +0000 |
commit | 1c2f00122e66a5bdcf326b3f6334e93146ca7cc5 (patch) | |
tree | 715f5730772c8971b1400db96ba484d331fea296 /gcc/toplev.c | |
parent | 7dfb44a02c99c300d7ae193feeda825148b28993 (diff) | |
download | gcc-1c2f00122e66a5bdcf326b3f6334e93146ca7cc5.tar.gz |
* flags.h (flag_really_no_inline): Remove.
* cgraph.c (cgraph_function_possibly_inlined_p): Simplify.
* toplev.c (flag_really_no_inline): Remove.
* c-cppbuiltin.c (c_cpp_builtins): Use flag_no_inline.
* ipa-inline.c (cgraph_decide_inlining): Do not check flag_no_inline.
(cgraph_decide_inlining_incrementally): Likewise.
(compute_inline_parameters): Likewise.
* opts.c (decode_options): Simplify.
* c-opts.c (c_common_post_options): Do not set flag_no_inline.
* common.opt (finline): Initialize to 1.
* tree-inline.c (inlinable_function_p): Check flag_no_inline.
* lang.c (java_post_options): Remove handling of flag_no_inline.
* misc.c (gnat_post_options): Do not set flag_no_inline.
* options.c (gfc_post_options): Do not set flag_no_inline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138238 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index d021eeea32c..d717ebace2a 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -245,11 +245,6 @@ int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN; int flag_complex_method = 1; -/* Nonzero means that we don't want inlining by virtue of -fno-inline, - not just because the tree inliner turned us off. */ - -int flag_really_no_inline = 2; - /* Nonzero means we should be saving declaration info into a .X file. */ int flag_gen_aux_info = 0; |