aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-08-04 05:39:56 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-08-04 05:39:56 -0700
commit9f06dab1e3acfb675669348a3ff331580d4eaf1e (patch)
treec7e6c67816304b3d50f7e9373caeb6900ebc2ca3 /ld
parent223b97ba9d9d1aa61bf22058f637c779c7621e6f (diff)
downloadbinutils-9f06dab1e3acfb675669348a3ff331580d4eaf1e.zip
binutils-9f06dab1e3acfb675669348a3ff331580d4eaf1e.tar.gz
binutils-9f06dab1e3acfb675669348a3ff331580d4eaf1e.tar.bz2
Add a testcase for "ld -d"
"ld -d" assigns space to common symbols even if a relocatable output file is specified (with '-r'). PR ld/21904 * testsuite/ld-elf/pr21904.d: New file. * testsuite/ld-elf/pr21904.s: Likewise.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/testsuite/ld-elf/pr21904.d6
-rw-r--r--ld/testsuite/ld-elf/pr21904.s5
3 files changed, 17 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 99c1455..2cf0d49 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/21904
+ * testsuite/ld-elf/pr21904.d: New file.
+ * testsuite/ld-elf/pr21904.s: Likewise.
+
2017-08-03 Nick Clifton <nickc@redhat.com>
PR ld/21884
diff --git a/ld/testsuite/ld-elf/pr21904.d b/ld/testsuite/ld-elf/pr21904.d
new file mode 100644
index 0000000..1d464fc
--- /dev/null
+++ b/ld/testsuite/ld-elf/pr21904.d
@@ -0,0 +1,6 @@
+#ld: -d -r
+#readelf: -s
+
+#...
+.*: [0-9a-f]+ +4 +OBJECT +GLOBAL +DEFAULT +[0-9]+ foo
+#pass
diff --git a/ld/testsuite/ld-elf/pr21904.s b/ld/testsuite/ld-elf/pr21904.s
new file mode 100644
index 0000000..587a226
--- /dev/null
+++ b/ld/testsuite/ld-elf/pr21904.s
@@ -0,0 +1,5 @@
+ .ifdef HPUX
+foo .comm 4
+ .else
+ .comm foo, 4, 4
+ .endif