diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/arm_purecode.ld (renamed from ld/testsuite/ld-arm/arm_noread.ld) | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 53f2428..cc598af 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2016-07-05 Andre Vieria <andre.simoesdiasvieira@arm.com> + + * testsuite/ld-arm/arm_noread.ld: Renamed to ... + testsuite/ld-arm/arm_purecode.ld: ... this, and replaced + all noread's by purecode. + 2016-07-05 Jan Beulich <jbeulich@suse.com> * ldexp.c (exp_fold_tree_1): Set linker_def field based on diff --git a/ld/testsuite/ld-arm/arm_noread.ld b/ld/testsuite/ld-arm/arm_purecode.ld index 3ff17bc..195aca1 100644 --- a/ld/testsuite/ld-arm/arm_noread.ld +++ b/ld/testsuite/ld-arm/arm_purecode.ld @@ -4,16 +4,16 @@ ENTRY(_start) MEMORY { read_memory (rx) : ORIGIN = 0x00008000, LENGTH = 4M - noread_memory (!rx) : ORIGIN = 0x00800000, LENGTH = 4M + purecode_memory (!rx) : ORIGIN = 0x00800000, LENGTH = 4M } SECTIONS { /* Read-only sections, merged into text segment: */ PROVIDE (__executable_start = 0x8000); . = 0x8000; - .text.noread : + .text.purecode : { - INPUT_SECTION_FLAGS (SHF_ARM_NOREAD) *(.text*) - } > noread_memory + INPUT_SECTION_FLAGS (SHF_ARM_PURECODE) *(.text*) + } > purecode_memory .text : { *(.before) |