aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-scripts/rgn-at5.t
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2010-09-09 19:22:29 +0000
committerH.J. Lu <hjl.tools@gmail.com>2010-09-09 19:22:29 +0000
commita2d1e0280113424781f2e50bd2c97cc2ef3d237e (patch)
tree9162a7fd3bf939c24bdf87e1d63f06769f05a85f /ld/testsuite/ld-scripts/rgn-at5.t
parent497462ef9eba5c85d2d405a33ff20940f5b0d74e (diff)
downloadgdb-a2d1e0280113424781f2e50bd2c97cc2ef3d237e.zip
gdb-a2d1e0280113424781f2e50bd2c97cc2ef3d237e.tar.gz
gdb-a2d1e0280113424781f2e50bd2c97cc2ef3d237e.tar.bz2
Don't warn zero LMA adjustment.
bfd/ 2010-09-09 H.J. Lu <hongjiu.lu@intel.com> PR ld/11998 * elf.c (assign_file_positions_for_load_sections): Don't warn zero LMA adjustment. ld/testsuite/ 2010-09-09 H.J. Lu <hongjiu.lu@intel.com> PR ld/11998 * ld-scripts/rgn-at5.d: New. * ld-scripts/rgn-at5.s: Likewise. * ld-scripts/rgn-at5.t: Likewise.
Diffstat (limited to 'ld/testsuite/ld-scripts/rgn-at5.t')
-rw-r--r--ld/testsuite/ld-scripts/rgn-at5.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/ld/testsuite/ld-scripts/rgn-at5.t b/ld/testsuite/ld-scripts/rgn-at5.t
new file mode 100644
index 0000000..7bcb877
--- /dev/null
+++ b/ld/testsuite/ld-scripts/rgn-at5.t
@@ -0,0 +1,29 @@
+MEMORY
+{
+ region1 : ORIGIN = 0x1000, LENGTH = 0x1000 ,
+ region2 (r) : org = 0x2000, len = 300
+ region3 (wx) : o = 0x4000, l = 4
+ region4 (!r) : o = 0x6000 + 60, len = 0x30 * 0x6
+}
+
+SECTIONS
+{
+ .sec0 : { *(*.sec0) }
+
+ .sec1 ORIGIN (region1) : AT(LENGTH (region2)) { *(*.sec1) }
+
+ fred = ORIGIN (region1) + LENGTH (region1) ;
+
+ .sec2 : { *(*.sec2) } > region3 AT> region4
+
+ .sec3 0x5000 : { *(*.sec3) }
+
+ /* In theory we could put:
+
+ /DISCARD/ : { *(*) }
+
+ here as we do not need any other sections for this test.
+ In practice however doing so breaks GOLD as it relies upon
+ being able to create/find various other sections such as
+ .dynamic, .dynsym and .gnu.hash. */
+}