From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1733) id F21C13858429; Thu, 25 Jan 2024 17:59:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F21C13858429 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1706205568; bh=mIdiv3amFFzM9dZMZJSimnS0O+0kt0p78el7claqkOk=; h=From:To:Subject:Date:From; b=Sl24WB6fw1mERHuiTZRLIoj7cBqBCW5LHWBv/mRr2YQO56V2ef1dLJM/jLlk7l0Bj fpk8HWV0dTE+S/06fJVyYiAhUHKnNlI9Kx07BiDzAabPAnUqU97k9imCkglFenkMyf zUjIY8kmrQCXUELz7tGwvJSszG70ll2lf6a7EuB0= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Georg-Johann Lay To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-8252] AVR: target/113601 - Fix wrong data start for ATmega3208 and ATmega3209. X-Act-Checkin: gcc X-Git-Author: Georg-Johann Lay X-Git-Refname: refs/heads/releases/gcc-13 X-Git-Oldrev: 5df872c05de2d4ba684c1873edfaba9f579b1489 X-Git-Newrev: fe3093ca9333965ec00d43ed2e24e594901a6ff9 Message-Id: <20240125175928.F21C13858429@sourceware.org> Date: Thu, 25 Jan 2024 17:59:28 +0000 (GMT) List-Id: https://gcc.gnu.org/g:fe3093ca9333965ec00d43ed2e24e594901a6ff9 commit r13-8252-gfe3093ca9333965ec00d43ed2e24e594901a6ff9 Author: Georg-Johann Lay Date: Thu Jan 25 18:51:04 2024 +0100 AVR: target/113601 - Fix wrong data start for ATmega3208 and ATmega3209. gcc/ PR target/113601 * config/avr/avr-mcus.def (atmega3208, atmega3209): Fix data_section_start. (cherry picked from commit 6b678d8f96ad5ffb8de9e3f1f1694cb21d7a2c33) Diff: --- gcc/config/avr/avr-mcus.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/avr/avr-mcus.def b/gcc/config/avr/avr-mcus.def index 7804d6256079..dc6e4e01340b 100644 --- a/gcc/config/avr/avr-mcus.def +++ b/gcc/config/avr/avr-mcus.def @@ -365,8 +365,8 @@ AVR_MCU ("atmega808", ARCH_AVRXMEGA3, AVR_ISA_RCALL, "__AVR_ATmega808__", AVR_MCU ("atmega809", ARCH_AVRXMEGA3, AVR_ISA_RCALL, "__AVR_ATmega809__", 0x3c00, 0x0, 0x2000, 0x4000) AVR_MCU ("atmega1608", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega1608__", 0x3800, 0x0, 0x4000, 0x4000) AVR_MCU ("atmega1609", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega1609__", 0x3800, 0x0, 0x4000, 0x4000) -AVR_MCU ("atmega3208", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega3208__", 0x3800, 0x0, 0x8000, 0x4000) -AVR_MCU ("atmega3209", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega3209__", 0x3800, 0x0, 0x8000, 0x4000) +AVR_MCU ("atmega3208", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega3208__", 0x3000, 0x0, 0x8000, 0x4000) +AVR_MCU ("atmega3209", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega3209__", 0x3000, 0x0, 0x8000, 0x4000) AVR_MCU ("atmega4808", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega4808__", 0x2800, 0x0, 0xc000, 0x4000) AVR_MCU ("atmega4809", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_ATmega4809__", 0x2800, 0x0, 0xc000, 0x4000) AVR_MCU ("avr16dd14", ARCH_AVRXMEGA3, AVR_ISA_NONE, "__AVR_AVR16DD14__", 0x7800, 0x0, 0x4000, 0x8000)