From: Georg-Johann Lay Date: Tue, 28 Feb 2012 10:06:58 +0000 (+0000) Subject: avr-devices.c (avr_mcu_type): Adjust NULL part of initializer to changes from r184614. X-Git-Tag: releases/gcc-4.7.0~176 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f37cf6a901f8146f3bb95245738ab262d0b5aa39;p=thirdparty%2Fgcc.git avr-devices.c (avr_mcu_type): Adjust NULL part of initializer to changes from r184614. * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part of initializer to changes from r184614. From-SVN: r184622 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 155ba4606eac..e8efead7ffd2 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 4f8696b8f7ef..41688c82553c 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 } };