diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 68 |
1 files changed, 36 insertions, 32 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 17efd33..cd7f653 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -3959,7 +3959,7 @@ handle_packed_attribute (tree *node, tree name, tree ARG_UNUSED (args), that changes what the typedef is typing. */ else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -3978,7 +3978,7 @@ handle_nocommon_attribute (tree *node, tree name, DECL_COMMON (*node) = 0; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -3996,7 +3996,7 @@ handle_common_attribute (tree *node, tree name, tree ARG_UNUSED (args), DECL_COMMON (*node) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4023,7 +4023,7 @@ handle_noreturn_attribute (tree *node, tree name, tree ARG_UNUSED (args), TYPE_READONLY (TREE_TYPE (type)), 1)); else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4042,7 +4042,7 @@ handle_noinline_attribute (tree *node, tree name, DECL_UNINLINABLE (*node) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4065,7 +4065,7 @@ handle_always_inline_attribute (tree *node, tree name, } else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4089,7 +4089,7 @@ handle_used_attribute (tree *pnode, tree name, tree ARG_UNUSED (args), } else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4115,7 +4115,7 @@ handle_unused_attribute (tree *node, tree name, tree ARG_UNUSED (args), TREE_USED (decl) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } } @@ -4149,7 +4149,7 @@ handle_const_attribute (tree *node, tree name, tree ARG_UNUSED (args), TREE_THIS_VOLATILE (TREE_TYPE (type)))); else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4193,7 +4193,7 @@ handle_transparent_union_attribute (tree *node, tree name, DECL_TRANSPARENT_UNION (decl) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4221,7 +4221,7 @@ handle_constructor_attribute (tree *node, tree name, } else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4249,7 +4249,7 @@ handle_destructor_attribute (tree *node, tree name, } else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4268,7 +4268,7 @@ handle_mode_attribute (tree *node, tree name, tree args, *no_add_attrs = true; if (TREE_CODE (TREE_VALUE (args)) != IDENTIFIER_NODE) - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); else { int j; @@ -4326,9 +4326,10 @@ handle_mode_attribute (tree *node, tree name, tree args, case MODE_VECTOR_INT: case MODE_VECTOR_FLOAT: - warning (0, "specifying vector types with __attribute__ ((mode)) " - "is deprecated"); - warning (0, "use __attribute__ ((vector_size)) instead"); + warning (OPT_Wattributes, "specifying vector types with " + "__attribute__ ((mode)) is deprecated"); + warning (OPT_Wattributes, + "use __attribute__ ((vector_size)) instead"); valid_mode = vector_mode_valid_p (mode); break; @@ -4593,7 +4594,7 @@ handle_alias_attribute (tree *node, tree name, tree args, } else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4617,13 +4618,14 @@ handle_visibility_attribute (tree *node, tree name, tree args, { if (TREE_CODE (*node) != RECORD_TYPE && TREE_CODE (*node) != UNION_TYPE) { - warning (0, "%qE attribute ignored on non-class types", name); + warning (OPT_Wattributes, "%qE attribute ignored on non-class types", + name); return NULL_TREE; } } else if (decl_function_context (decl) != 0 || !TREE_PUBLIC (decl)) { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); return NULL_TREE; } @@ -4641,7 +4643,7 @@ handle_visibility_attribute (tree *node, tree name, tree args, return NULL_TREE; if (TREE_CODE (decl) == IDENTIFIER_NODE) { - warning (0, "%qE attribute ignored on types", + warning (OPT_Wattributes, "%qE attribute ignored on types", name); return NULL_TREE; } @@ -4715,7 +4717,7 @@ handle_tls_model_attribute (tree *node, tree name, tree args, if (!DECL_THREAD_LOCAL (decl)) { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } else @@ -4782,7 +4784,7 @@ handle_malloc_attribute (tree *node, tree name, tree ARG_UNUSED (args), DECL_IS_MALLOC (*node) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4800,7 +4802,7 @@ handle_returns_twice_attribute (tree *node, tree name, tree ARG_UNUSED (args), DECL_IS_RETURNS_TWICE (*node) = 1; else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4846,7 +4848,7 @@ handle_pure_attribute (tree *node, tree name, tree ARG_UNUSED (args), /* ??? TODO: Support types. */ else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -4914,9 +4916,9 @@ handle_deprecated_attribute (tree *node, tree name, what = DECL_NAME (TYPE_NAME (type)); } if (what) - warning (0, "%qE attribute ignored for %qE", name, what); + warning (OPT_Wattributes, "%qE attribute ignored for %qE", name, what); else - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); } return NULL_TREE; @@ -4940,7 +4942,7 @@ handle_vector_size_attribute (tree *node, tree name, tree args, if (!host_integerp (size, 1)) { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); return NULL_TREE; } @@ -5218,7 +5220,7 @@ handle_nothrow_attribute (tree *node, tree name, tree ARG_UNUSED (args), /* ??? TODO: Support types. */ else { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -5241,7 +5243,7 @@ handle_cleanup_attribute (tree *node, tree name, tree args, we'd be missing too much, since we do have attribute constructor. */ if (TREE_CODE (decl) != VAR_DECL || TREE_STATIC (decl)) { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; return NULL_TREE; } @@ -5280,7 +5282,7 @@ handle_warn_unused_result_attribute (tree *node, tree name, /* Ignore the attribute for functions not returning any value. */ if (VOID_TYPE_P (TREE_TYPE (*node))) { - warning (0, "%qE attribute ignored", name); + warning (OPT_Wattributes, "%qE attribute ignored", name); *no_add_attrs = true; } @@ -5297,7 +5299,8 @@ handle_sentinel_attribute (tree *node, tree name, tree args, if (!params) { - warning (0, "%qE attribute requires prototypes with named arguments", name); + warning (OPT_Wattributes, + "%qE attribute requires prototypes with named arguments", name); *no_add_attrs = true; } else @@ -5307,7 +5310,8 @@ handle_sentinel_attribute (tree *node, tree name, tree args, if (VOID_TYPE_P (TREE_VALUE (params))) { - warning (0, "%qE attribute only applies to variadic functions", name); + warning (OPT_Wattributes, + "%qE attribute only applies to variadic functions", name); *no_add_attrs = true; } } |