diff options
author | Jan Hubicka <jh@suse.cz> | 2004-01-01 14:59:02 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2004-01-01 13:59:02 +0000 |
commit | b684a3df8e33898816611f1cefbd0068ca22beca (patch) | |
tree | fe1b65729ca0a43eccd94abb9e3c03c5e01a6e20 /gcc/c-objc-common.c | |
parent | 74aa338ad540b76f8d8566c996642b02810f5c14 (diff) | |
download | gcc-b684a3df8e33898816611f1cefbd0068ca22beca.zip gcc-b684a3df8e33898816611f1cefbd0068ca22beca.tar.gz gcc-b684a3df8e33898816611f1cefbd0068ca22beca.tar.bz2 |
re PR rtl-optimization/13473 (cc1 segfault w/-march=pentium4)
PR opt/13473
* recog.c (validate_replace_rtx_1): Take care for RTL sharing inside
ASM input operands
PR opt/12617
* toplev.c (dump_file_index): Reorder ce3 and bbro.
(dump_file): Likewise.
(rest_of_compilation): Likewise.
PR debug/13367
* cgraph.c (cgraph_function_possibly_inlined): Even with
flag_really_no_inline we inline always_inline functions.
* cgraphunit.c (cgraph_analyze_function): Clear inlinable flag
for non-always_inline functions when there is flag_really_no_inline.
(cgraph_decide_inlining): Limit work done when not inlining.
(cgraph_decide_inlining_incrementally): Likewise.
(cgraph_optimize_function): Check whether something got inlined.
* c-objc-common.c (c_disregard_inline_limits): Do not always inline
extern inline functions when not inlining.
* opts.c (decode_options): Disable crossjumping at -O1
* invoke.texi (-O1): Document change.
* gcc.dg/debug/20031231-1.c: New.
* gcc.c-torture/compile/20040101-1.c: New.
* gcc.dg/dwarf-die-[1-7].c: New.
From-SVN: r75303
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index e9a4a09..5a57aa4 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -1,5 +1,5 @@ /* Some code common to C and ObjC front ends. - Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -61,7 +61,8 @@ c_disregard_inline_limits (tree fn) if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL) return 1; - return DECL_DECLARED_INLINE_P (fn) && DECL_EXTERNAL (fn); + return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn) + && DECL_EXTERNAL (fn)); } int |