diff options
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index 4b09c3e..178f10f 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -77,7 +77,7 @@ c_cannot_inline_tree_fn (tree *fnp) && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL) { if (do_warning) - warning ("%Jfunction %qF can never be inlined because it " + warning (0, "%Jfunction %qF can never be inlined because it " "is suppressed using -fno-inline", fn, fn); goto cannot_inline; } @@ -87,7 +87,7 @@ c_cannot_inline_tree_fn (tree *fnp) if (!DECL_DECLARED_INLINE_P (fn) && !targetm.binds_local_p (fn)) { if (do_warning) - warning ("%Jfunction %qF can never be inlined because it might not " + warning (0, "%Jfunction %qF can never be inlined because it might not " "be bound within this unit of translation", fn, fn); goto cannot_inline; } @@ -95,7 +95,7 @@ c_cannot_inline_tree_fn (tree *fnp) if (!function_attribute_inlinable_p (fn)) { if (do_warning) - warning ("%Jfunction %qF can never be inlined because it uses " + warning (0, "%Jfunction %qF can never be inlined because it uses " "attributes conflicting with inlining", fn, fn); goto cannot_inline; } |