re PR target/79883 (avr i18n: untranslated "interrupt" or "signal")
authorGeorg-Johann Lay <avr@gjlay.de>
Mon, 21 Aug 2017 12:39:59 +0000 (12:39 +0000)
committerGeorg-Johann Lay <gjl@gcc.gnu.org>
Mon, 21 Aug 2017 12:39:59 +0000 (12:39 +0000)
PR target/79883
* config/avr/avr.c (avr_set_current_function): Typo in diagnostic.

From-SVN: r251223

gcc/ChangeLog
gcc/config/avr/avr.c

index afc4514..e0dae15 100644 (file)
@@ -1,3 +1,8 @@
+2017-08-21  Georg-Johann Lay  <avr@gjlay.de>
+
+       PR target/79883
+       * config/avr/avr.c (avr_set_current_function): Typo in diagnostic.
+
 2017-08-21  Richard Sandiford  <richard.sandiford@linaro.org>
 
        * stor-layout.h (vector_type_mode): Move to...
index 20a444f..3baa61d 100644 (file)
@@ -1111,7 +1111,7 @@ avr_set_current_function (tree decl)
       || 0 == strcmp ("INTERRUPT", name)
       || 0 == strcmp ("SIGNAL", name))
     {
-      warning_at (loc, OPT_Wmisspelled_isr, "%qs is a reserved indentifier"
+      warning_at (loc, OPT_Wmisspelled_isr, "%qs is a reserved identifier"
                   " in AVR-LibC.  Consider %<#include <avr/interrupt.h>%>"
                   " before using the %qs macro", name, name);
     }