avr-devices.c (avr_mcu_type): Adjust NULL part of initializer to changes from r184614.
authorGeorg-Johann Lay <avr@gjlay.de>
Tue, 28 Feb 2012 10:06:58 +0000 (10:06 +0000)
committerGeorg-Johann Lay <gjl@gcc.gnu.org>
Tue, 28 Feb 2012 10:06:58 +0000 (10:06 +0000)
* config/avr/avr-devices.c (avr_mcu_type): Adjust NULL part
of initializer to changes from r184614.

From-SVN: r184622

gcc/ChangeLog
gcc/config/avr/avr-devices.c

index 155ba4606eacd771c78c1b7824876a7ff5fca6f1..e8efead7ffd27a75e7a94497b08e6b9358a9c24c 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 4f8696b8f7efd05f7b2d688ac279add84e377b1d..41688c82553c1e6fe822207ccc3e6b4e99934a63 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 }
 };