diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 9397152..626a4c9 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -5904,7 +5904,7 @@ do_assemble_alias (tree decl, tree target) else #endif error_at (DECL_SOURCE_LOCATION (decl), - "ifunc is not supported on this target"); + "%qs is not supported on this target", "ifunc"); } # ifdef ASM_OUTPUT_DEF_FROM_DECLS @@ -5962,9 +5962,9 @@ assemble_alias (tree decl, tree target) ultimate_transparent_alias_target (&target); if (alias == target) - error ("weakref %q+D ultimately targets itself", decl); + error ("%qs symbol %q+D ultimately targets itself", "weakref", decl); if (TREE_PUBLIC (decl)) - error ("weakref %q+D must have static linkage", decl); + error ("%qs symbol %q+D must have static linkage", "weakref", decl); } else { @@ -5981,7 +5981,7 @@ assemble_alias (tree decl, tree target) if (TREE_CODE (decl) == FUNCTION_DECL && lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl))) error_at (DECL_SOURCE_LOCATION (decl), - "ifunc is not supported in this configuration"); + "%qs is not supported in this configuration", "ifunc"); else error_at (DECL_SOURCE_LOCATION (decl), "only weak aliases are supported in this configuration"); |