OSDN Git Service

* config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
authorgjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 28 Feb 2012 10:06:58 +0000 (10:06 +0000)
committergjl <gjl@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 28 Feb 2012 10:06:58 +0000 (10:06 +0000)
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
gcc/config/avr/avr-devices.c

index 155ba46..e8efead 100644 (file)
@@ -1,3 +1,8 @@
+2012-02-28  Georg-Johann Lay  <avr@gjlay.de>
+
+       * config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
+       of initializer to changes from r184614.
+       
 2012-02-28  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/52395
index 4f8696b..41688c8 100644 (file)
@@ -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 }
 };