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

From-SVN: r251225

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

index fcb1233f463e969ecca3e0be25a9d54437c5c66d..961bb08c11d57ab5957e8895e65a8292db3cabd6 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-19  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/81894
index 3fdd5fd33b90496da3a562a7cb271b7980416fad..9ff2754ca1ebfe7817ee97ecca52b4e6b24725e1 100644 (file)
@@ -768,7 +768,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);
     }