From 1e946ea6e365c09385dd4db787d74e796618e0d2 Mon Sep 17 00:00:00 2001 From: gjl Date: Tue, 28 Feb 2012 10:06:58 +0000 Subject: [PATCH] * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part of initializer to changes from r184614. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184622 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/config/avr/avr-devices.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 155ba4606ea..e8efead7ffd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-02-28 Georg-Johann Lay + + * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part + of initializer to changes from r184614. + 2012-02-28 Richard Guenther PR tree-optimization/52395 diff --git a/gcc/config/avr/avr-devices.c b/gcc/config/avr/avr-devices.c index 4f8696b8f7e..41688c82553 100644 --- a/gcc/config/avr/avr-devices.c +++ b/gcc/config/avr/avr-devices.c @@ -61,6 +61,6 @@ const struct mcu_type_s avr_mcu_types[] = { #include "avr-mcus.def" #undef AVR_MCU /* End of list. */ - { NULL, ARCH_UNKNOWN, NULL, 0, 0, 0, NULL } + { NULL, ARCH_UNKNOWN, NULL, 0, 0, 0, 0, NULL } }; -- 2.11.4.GIT