mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-31 15:31:11 +08:00
tree-inline.c (expand_call_inline): Do not issue a -Winline warning if DECL_NO_INLINE_WARNING_P is set on the function.
* tree-inline.c (expand_call_inline): Do not issue a -Winline warning if DECL_NO_INLINE_WARNING_P is set on the function. From-SVN: r172707
This commit is contained in:
parent
c1ee289264
commit
ff7037dca8
@ -1,3 +1,8 @@
|
||||
2011-04-19 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* tree-inline.c (expand_call_inline): Do not issue a -Winline warning
|
||||
if DECL_NO_INLINE_WARNING_P is set on the function.
|
||||
|
||||
2011-04-19 Bernd Schmidt <bernds@codesourcery.com>
|
||||
|
||||
PR fortran/47976
|
||||
@ -41,7 +46,6 @@
|
||||
* config/vms/vms-ar.c: New file.
|
||||
* config/vms/t-vmsnative: New file.
|
||||
|
||||
>>>>>>> .r172704
|
||||
2011-04-18 Xinliang David Li <davidxl@google.com>
|
||||
|
||||
* final.c (dump_basic_block_info): Use ASM_COMMENT_START.
|
||||
|
@ -3744,7 +3744,9 @@ expand_call_inline (basic_block bb, gimple stmt, copy_body_data *id)
|
||||
_(cgraph_inline_failed_string (reason)));
|
||||
sorry ("called from here");
|
||||
}
|
||||
else if (warn_inline && DECL_DECLARED_INLINE_P (fn)
|
||||
else if (warn_inline
|
||||
&& DECL_DECLARED_INLINE_P (fn)
|
||||
&& !DECL_NO_INLINE_WARNING_P (fn)
|
||||
&& !DECL_IN_SYSTEM_HEADER (fn)
|
||||
&& reason != CIF_UNSPECIFIED
|
||||
&& !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn))
|
||||
|
Loading…
x
Reference in New Issue
Block a user