diff options
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gcc/opts.c b/gcc/opts.c index 2a88ce2d138..13a7de1709f 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1072,24 +1072,14 @@ decode_options (unsigned int argc, const char **argv) flag_pic = flag_pie; if (flag_pic && !flag_pie) flag_shlib = 1; - - if (flag_no_inline == 2) - flag_no_inline = 0; - else - flag_really_no_inline = flag_no_inline; } - /* Set flag_no_inline before the post_options () hook. The C front - ends use it to determine tree inlining defaults. FIXME: such - code should be lang-independent when all front ends use tree - inlining, in which case it, and this condition, should be moved - to the top of process_options() instead. */ if (optimize == 0) { /* Inlining does not work if not optimizing, so force it not to be done. */ - flag_no_inline = 1; warn_inline = 0; + flag_no_inline = 1; /* The c_decode_option function and decode_option hook set this to `2' if -Wall is used, so we can avoid giving out @@ -1099,9 +1089,6 @@ decode_options (unsigned int argc, const char **argv) "-Wuninitialized is not supported without -O"); } - if (flag_really_no_inline == 2) - flag_really_no_inline = flag_no_inline; - /* The optimization to partition hot and cold basic blocks into separate sections of the .o and executable files does not work (currently) with exception handling. This is because there is no support for |