diff options
author | Jan Hubicka <jh@suse.cz> | 2008-09-17 17:00:59 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-09-17 15:00:59 +0000 |
commit | 0494626aae628174dd5d510d25a1fabac300387a (patch) | |
tree | 04fe9640a665ee7bf86c70b57f060c685b31ee95 /gcc/cp/decl.c | |
parent | 1c1b0507d40b99ad6356f8feb2b43430b30568bb (diff) | |
download | gcc-0494626aae628174dd5d510d25a1fabac300387a.zip gcc-0494626aae628174dd5d510d25a1fabac300387a.tar.gz gcc-0494626aae628174dd5d510d25a1fabac300387a.tar.bz2 |
re PR middle-end/18071 (-Winline does not respect -fno-default-inline)
PR c++/18071
* tree.h (DECL_INLINE): remove.
(DECL_DECLARED_INLINE_P): Update docs.
(DECL_NO_INLINE_WARNING_P): new.
(tree_function_decl): Replace inline_flag by no_inline_warning_flag.
* tree-inline.c (inlinable_function_p): Set DECL_NO_INLINE_WARNING_P.
Java:
* class.c (add_method_1): Do not initialize DECL_INLINE.
(make_local_function_alias): Likewise.
* expr.c (rewrite_arglist_getcaller): Set DECL_UNINLINABLE.
* lang.c (java_decl_ok_for_sibcall): Use DECL_UNINLINABLE.
Objc:
* objc/objc-act.c (objc_finish_method_definition): Do not set DECL_INLINE.
C++:
* cp/decl.c (start_method): Set DECL_NO_INLINE_WARNING_P.
From-SVN: r140418
Diffstat (limited to 'gcc/cp/decl.c')
-rw-r--r-- | gcc/cp/decl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index d699f89..f57ca87 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -12332,6 +12332,7 @@ start_method (cp_decl_specifier_seq *declspecs, check_template_shadow (fndecl); DECL_DECLARED_INLINE_P (fndecl) = 1; + DECL_NO_INLINE_WARNING_P (fndecl) = 1; /* We process method specializations in finish_struct_1. */ if (processing_template_decl && !DECL_TEMPLATE_SPECIALIZATION (fndecl)) |