diff options
Diffstat (limited to 'gcc/config/avr/avr.c')
-rw-r--r-- | gcc/config/avr/avr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index d080b8d..573194d 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -4511,7 +4511,7 @@ avr_handle_progmem_attribute (tree *node, tree name, } else { - warning ("`%s' attribute ignored", IDENTIFIER_POINTER (name)); + warning ("%qs attribute ignored", IDENTIFIER_POINTER (name)); *no_add_attrs = true; } } @@ -4530,7 +4530,7 @@ avr_handle_fndecl_attribute (tree *node, tree name, { if (TREE_CODE (*node) != FUNCTION_DECL) { - warning ("`%s' attribute only applies to functions", + warning ("%qs attribute only applies to functions", IDENTIFIER_POINTER (name)); *no_add_attrs = true; } @@ -4612,7 +4612,7 @@ static void avr_file_start (void) { if (avr_asm_only_p) - error ("MCU `%s' supported for assembler only", avr_mcu_name); + error ("MCU %qs supported for assembler only", avr_mcu_name); default_file_start (); |