diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-22 18:09:37 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-22 18:09:37 +0000 |
commit | b0ff69b145684f61556bb831742bda48a8447d1e (patch) | |
tree | 8c35f55f99ebd1c1cec33e6d264c3de14164291e /gcc/c-objc-common.c | |
parent | 2929044d2c2dd186cf7f93f206379c92f473712d (diff) | |
download | gcc-b0ff69b145684f61556bb831742bda48a8447d1e.tar.gz |
* c-objc-common.c (c_cannot_inline_tree_fn): Add warning control
to warning calls.
* tree-inline.c (inlinable_function_p): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102289 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index eb556b142e1..8fcee7330f4 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -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; } |