diff options
author | Anatoly Sokolov <aesok@post.ru> | 2011-02-14 18:49:35 +0300 |
---|---|---|
committer | Anatoly Sokolov <aesok@gcc.gnu.org> | 2011-02-14 18:49:35 +0300 |
commit | 30dd1ea360dcd4e859aa57be5f5db8b67ea3668e (patch) | |
tree | 3d23c9c71ae92fb734a30ef02583ed5c4d2c6252 /gcc | |
parent | 1d92226be3a775b085e90436067c45f938fba761 (diff) | |
download | gcc-30dd1ea360dcd4e859aa57be5f5db8b67ea3668e.zip gcc-30dd1ea360dcd4e859aa57be5f5db8b67ea3668e.tar.gz gcc-30dd1ea360dcd4e859aa57be5f5db8b67ea3668e.tar.bz2 |
re PR target/47696 ([AVR] Compilation for atmega2560 produces incomplete interrupt vector table (USART2,3))
PR target/47696
* config/avr/avr-devices.c (avr_mcu_types): Fix ATmega2560 device
description.
From-SVN: r170137
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/config/avr/avr-devices.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a693321..1562adb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2011-02-14 Anatoly Sokolov <aesok@post.ru> + + PR target/47696 + * config/avr/avr-devices.c (avr_mcu_types): Fix ATmega2560 device + description. + 2011-02-14 Nathan Froyd <froydnj@codesourcery.com> * config/mcore/constraints.md: New file. diff --git a/gcc/config/avr/avr-devices.c b/gcc/config/avr/avr-devices.c index d62d22e..d2884f6 100755 --- a/gcc/config/avr/avr-devices.c +++ b/gcc/config/avr/avr-devices.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2009, 2010 +/* Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Anatoly Sokolov (aesok@post.ru) @@ -214,7 +214,7 @@ const struct mcu_type_s avr_mcu_types[] = { { "at90usb1287", ARCH_AVR51, "__AVR_AT90USB1287__", 0, 0x0100, "usb1286" }, /* 3-Byte PC. */ { "avr6", ARCH_AVR6, NULL, 0, 0x0200, "m2561" }, - { "atmega2560", ARCH_AVR6, "__AVR_ATmega2560__", 0, 0x0200, "m2561" }, + { "atmega2560", ARCH_AVR6, "__AVR_ATmega2560__", 0, 0x0200, "m2560" }, { "atmega2561", ARCH_AVR6, "__AVR_ATmega2561__", 0, 0x0200, "m2561" }, /* Assembler only. */ { "avr1", ARCH_AVR1, NULL, 0, 0x0060, "s1200" }, |