Commit d2fcbf6f by DJ Delorie Committed by DJ Delorie

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
parent d1cc97e0
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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment