diff options
author | Nick Clifton <nickc@redhat.com> | 2013-08-23 15:21:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-08-23 15:21:53 +0000 |
commit | 8c661d24dc8da60f125f8f14f37729c71bda8adb (patch) | |
tree | 7ca7afe248bd0ebe5e27c6a9df0d7b48ea496a1f /ld/scripttempl/avr.sc | |
parent | a575c958454ca547690d79011acd50036b01e50d (diff) | |
download | gdb-8c661d24dc8da60f125f8f14f37729c71bda8adb.zip gdb-8c661d24dc8da60f125f8f14f37729c71bda8adb.tar.gz gdb-8c661d24dc8da60f125f8f14f37729c71bda8adb.tar.bz2 |
Fix typo.
Diffstat (limited to 'ld/scripttempl/avr.sc')
-rw-r--r-- | ld/scripttempl/avr.sc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ld/scripttempl/avr.sc b/ld/scripttempl/avr.sc index 77200d0..bfce5fe 100644 --- a/ld/scripttempl/avr.sc +++ b/ld/scripttempl/avr.sc @@ -81,7 +81,7 @@ SECTIONS KEEP(*(.vectors)) /* For data that needs to reside in the lower 64k of progmem. */ - ${RELOCATING+. *(.progmem.gcc*)} + ${RELOCATING+ *(.progmem.gcc*)} /* PR 13812: Placing the trampolines here gives a better chance that they will be in range of the code that uses them. */ @@ -89,21 +89,21 @@ SECTIONS ${CONSTRUCTING+ __trampolines_start = . ; } /* The jump trampolines for the 16-bit limited relocs will reside here. */ *(.trampolines) - ${RELOCATING+. *(.trampolines*)} + ${RELOCATING+ *(.trampolines*)} ${CONSTRUCTING+ __trampolines_end = . ; } - ${RELOCATING+. *(.progmem*)} + ${RELOCATING+ *(.progmem*)} ${RELOCATING+. = ALIGN(2);} /* For future tablejump instruction arrays for 3 byte pc devices. We don't relax jump/call instructions within these sections. */ *(.jumptables) - ${RELOCATING+. *(.jumptables*)} + ${RELOCATING+ *(.jumptables*)} /* For code that needs to reside in the lower 128k progmem. */ *(.lowtext) - ${RELOCATING+. *(.lowtext*)} + ${RELOCATING+ *(.lowtext*)} ${CONSTRUCTING+ __ctors_start = . ; } ${CONSTRUCTING+ *(.ctors) } @@ -170,7 +170,7 @@ SECTIONS addresses for subsequent sections because -Tdata= from the command line will have no effect, see PR13697. Thus, keep .data */ KEEP (*(.data)) - ${RELOCATING+*(.data*)} + ${RELOCATING+ *(.data*)} *(.rodata) /* We need to include .rodata here if gcc is used */ ${RELOCATING+ *(.rodata*)} /* with -fdata-sections. */ *(.gnu.linkonce.d*) |