diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2012-02-28 10:06:58 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2012-02-28 10:06:58 +0000 |
commit | f37cf6a901f8146f3bb95245738ab262d0b5aa39 (patch) | |
tree | 4f4903d80d9ceb60a555b64e4c0021d8d8e1b9a8 /gcc/config | |
parent | 9396206b54f13ac683b681e2b117fa4704ada247 (diff) | |
download | gcc-f37cf6a901f8146f3bb95245738ab262d0b5aa39.zip gcc-f37cf6a901f8146f3bb95245738ab262d0b5aa39.tar.gz gcc-f37cf6a901f8146f3bb95245738ab262d0b5aa39.tar.bz2 |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/avr/avr-devices.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/avr/avr-devices.c b/gcc/config/avr/avr-devices.c index 4f8696b..41688c8 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 } }; |