aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-inline.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r--gcc/tree-inline.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index c5634fdd..696e7b4 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -1163,7 +1163,7 @@ inlinable_function_p (tree fn)
if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)))
sorry (inline_forbidden_reason, fn, fn);
else if (do_warning)
- warning (inline_forbidden_reason, fn, fn);
+ warning (0, inline_forbidden_reason, fn, fn);
inlinable = false;
}
@@ -1571,8 +1571,8 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data)
&& strlen (reason)
&& !lookup_attribute ("noinline", DECL_ATTRIBUTES (fn)))
{
- warning ("%Jinlining failed in call to %qF: %s", fn, fn, reason);
- warning ("called from here");
+ warning (0, "%Jinlining failed in call to %qF: %s", fn, fn, reason);
+ warning (0, "called from here");
}
goto egress;
}
@@ -1686,7 +1686,7 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data)
&& return_slot_addr == NULL_TREE
&& block_may_fallthru (copy))
{
- warning ("control may reach end of non-void function %qD being inlined",
+ warning (0, "control may reach end of non-void function %qD being inlined",
fn);
TREE_NO_WARNING (fn) = 1;
}