aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Chertykov <denisc@gcc.gnu.org>2016-06-15 19:43:35 +0300
committerDenis Chertykov <denisc@gcc.gnu.org>2016-06-15 19:43:35 +0300
commitc4468fc3e694127b19bdc30b5955f6d3f5685ea9 (patch)
tree5cba463a0820bee26da058f964efc6e937994209
parent22fba35255b57235f19aec8d7200137c9d82252a (diff)
downloadgcc-c4468fc3e694127b19bdc30b5955f6d3f5685ea9.zip
gcc-c4468fc3e694127b19bdc30b5955f6d3f5685ea9.tar.gz
gcc-c4468fc3e694127b19bdc30b5955f6d3f5685ea9.tar.bz2
Correct Changelog entry:
PR target/67353 * config/avr/avr.c (avr_set_current_function): Warn misspelled interrupt/ signal handler if -Wmisspelled-isr flag is enabled. * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled by default to warn misspelled interrupt/ signal handler. * doc/invoke.texi (AVR Options): Document it. Update description for -nodevicelib option. From-SVN: r237487
-rw-r--r--gcc/ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 48fdfc7..7f3fe7e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -3,6 +3,10 @@
PR target/67353
* config/avr/avr.c (avr_set_current_function): Warn misspelled
interrupt/ signal handler if -Wmisspelled-isr flag is enabled.
+ * config/avr/avr.opt (Wmisspelled-isr): New warning flag. Enabled
+ by default to warn misspelled interrupt/ signal handler.
+ * doc/invoke.texi (AVR Options): Document it. Update description
+ for -nodevicelib option.
2016-06-15 Kyrylo Tkachov <kyrylo.tkachov@arm.com>