mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-28 11:50:52 +08:00
c-objc-common.c (c_cannot_inline_tree_fn): Add warning control to warning calls.
* c-objc-common.c (c_cannot_inline_tree_fn): Add warning control to warning calls. * tree-inline.c (inlinable_function_p): Likewise. From-SVN: r102289
This commit is contained in:
parent
d1cc97e081
commit
d2fcbf6f86
@ -1,3 +1,9 @@
|
||||
2005-07-22 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* c-objc-common.c (c_cannot_inline_tree_fn): Add warning control
|
||||
to warning calls.
|
||||
* tree-inline.c (inlinable_function_p): Likewise.
|
||||
|
||||
2005-07-22 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR debug/21828
|
||||
|
@ -78,7 +78,7 @@ c_cannot_inline_tree_fn (tree *fnp)
|
||||
&& lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
|
||||
{
|
||||
if (do_warning)
|
||||
warning (0, "function %q+F can never be inlined because it "
|
||||
warning (OPT_Winline, "function %q+F can never be inlined because it "
|
||||
"is suppressed using -fno-inline", fn);
|
||||
goto cannot_inline;
|
||||
}
|
||||
@ -88,16 +88,16 @@ c_cannot_inline_tree_fn (tree *fnp)
|
||||
if (!DECL_DECLARED_INLINE_P (fn) && !targetm.binds_local_p (fn))
|
||||
{
|
||||
if (do_warning)
|
||||
warning (0, "function %q+F can never be inlined because it might not "
|
||||
"be bound within this unit of translation", fn);
|
||||
warning (OPT_Winline, "function %q+F can never be inlined because it "
|
||||
"might not be bound within this unit of translation", fn);
|
||||
goto cannot_inline;
|
||||
}
|
||||
|
||||
if (!function_attribute_inlinable_p (fn))
|
||||
{
|
||||
if (do_warning)
|
||||
warning (0, "function %q+F can never be inlined because it uses "
|
||||
"attributes conflicting with inlining", fn);
|
||||
warning (OPT_Winline, "function %q+F can never be inlined because it "
|
||||
"uses attributes conflicting with inlining", fn);
|
||||
goto cannot_inline;
|
||||
}
|
||||
|
||||
|
@ -1528,7 +1528,7 @@ inlinable_function_p (tree fn)
|
||||
if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
|
||||
sorry (inline_forbidden_reason, fn);
|
||||
else if (do_warning)
|
||||
warning (0, inline_forbidden_reason, fn);
|
||||
warning (OPT_Winline, inline_forbidden_reason, fn);
|
||||
|
||||
inlinable = false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user