summaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2009-06-14 22:13:30 +0000
committerH.J. Lu <hjl.tools@gmail.com>2009-06-14 22:13:30 +0000
commit44c4ea11d335f8d5691e9ea5c38c3187ab568467 (patch)
tree734174e15f439d07e818c3c3b01f2da4919aae65 /ld
parentf6475b4872707a92be2c7c28f83d55d891a93ed2 (diff)
downloadbinutils-44c4ea11d335f8d5691e9ea5c38c3187ab568467.tar.gz
binutils-44c4ea11d335f8d5691e9ea5c38c3187ab568467.tar.bz2
binutils-44c4ea11d335f8d5691e9ea5c38c3187ab568467.zip
bfd/
2009-06-14 H.J. Lu <hongjiu.lu@intel.com> PR ld/10270 * elf32-i386.c (elf_i386_allocate_dynrelocs): Disallow dynamic IFUNC pointer in non-shared object. Use .got.plt for IFUNC definition in PIE. (elf_i386_allocate_dynrelocs): Resolve IFUNC definition in PIE locally. * elf64-x86-64.c (elf64_x86_64_allocate_dynrelocs): Disallow dynamic IFUNC pointer in non-shared object. Use .got.plt for IFUNC definition in PIE. (elf64_x86_64_relocate_section): Resolve IFUNC definition in PIE locally. ld/testsuite/ 2009-06-14 H.J. Lu <hongjiu.lu@intel.com> PR ld/10270 * ld-ifunc/ifunc-9-x86.d: New. * ld-ifunc/ifunc-9-x86.s: Likewise.
Diffstat (limited to 'ld')
-rw-r--r--ld/testsuite/ChangeLog34
-rw-r--r--ld/testsuite/ld-ifunc/ifunc-9-x86.d3
-rw-r--r--ld/testsuite/ld-ifunc/ifunc-9-x86.s18
3 files changed, 41 insertions, 14 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index 26a526dec12..3906981323d 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,20 +1,26 @@
+2009-06-14 H.J. Lu <hongjiu.lu@intel.com>
+
+ PR ld/10270
+ * ld-ifunc/ifunc-9-x86.d: New.
+ * ld-ifunc/ifunc-9-x86.s: Likewise.
+
2009-06-13 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10269
- *: ld-ifunc/ifunc-1-local-x86.d: New.
- *: ld-ifunc/ifunc-1-local-x86.s: Likewise.
- *: ld-ifunc/ifunc-2-local-i386.d: Likewise.
- *: ld-ifunc/ifunc-2-local-i386.s: Likewise.
- *: ld-ifunc/ifunc-2-local-x86-64.d: Likewise.
- *: ld-ifunc/ifunc-2-local-x86-64.s: Likewise.
- *: ld-ifunc/ifunc-4-local-x86.d: Likewise.
- *: ld-ifunc/ifunc-4-local-x86.s: Likewise.
- *: ld-ifunc/ifunc-5-local-i386.s: Likewise.
- *: ld-ifunc/ifunc-5-local-x86-64.s: Likewise.
- *: ld-ifunc/ifunc-5a-local-i386.d: Likewise.
- *: ld-ifunc/ifunc-5a-local-x86-64.d: Likewise.
- *: ld-ifunc/ifunc-5b-local-i386.d: Likewise.
- *: ld-ifunc/ifunc-5b-local-x86-64.d: Likewise.
+ * ld-ifunc/ifunc-1-local-x86.d: New.
+ * ld-ifunc/ifunc-1-local-x86.s: Likewise.
+ * ld-ifunc/ifunc-2-local-i386.d: Likewise.
+ * ld-ifunc/ifunc-2-local-i386.s: Likewise.
+ * ld-ifunc/ifunc-2-local-x86-64.d: Likewise.
+ * ld-ifunc/ifunc-2-local-x86-64.s: Likewise.
+ * ld-ifunc/ifunc-4-local-x86.d: Likewise.
+ * ld-ifunc/ifunc-4-local-x86.s: Likewise.
+ * ld-ifunc/ifunc-5-local-i386.s: Likewise.
+ * ld-ifunc/ifunc-5-local-x86-64.s: Likewise.
+ * ld-ifunc/ifunc-5a-local-i386.d: Likewise.
+ * ld-ifunc/ifunc-5a-local-x86-64.d: Likewise.
+ * ld-ifunc/ifunc-5b-local-i386.d: Likewise.
+ * ld-ifunc/ifunc-5b-local-x86-64.d: Likewise.
2009-06-03 H.J. Lu <hongjiu.lu@intel.com>
diff --git a/ld/testsuite/ld-ifunc/ifunc-9-x86.d b/ld/testsuite/ld-ifunc/ifunc-9-x86.d
new file mode 100644
index 00000000000..207c5d4a84e
--- /dev/null
+++ b/ld/testsuite/ld-ifunc/ifunc-9-x86.d
@@ -0,0 +1,3 @@
+#ld: --export-dynamic
+#error: .*dynamic STT_GNU_IFUNC symbool `foo' with pointer equality in `.*.o' can not be used when making an executable; recompile with -fPIE and relink with -pie
+#target: x86_64-*-* i?86-*-*
diff --git a/ld/testsuite/ld-ifunc/ifunc-9-x86.s b/ld/testsuite/ld-ifunc/ifunc-9-x86.s
new file mode 100644
index 00000000000..05321e423dc
--- /dev/null
+++ b/ld/testsuite/ld-ifunc/ifunc-9-x86.s
@@ -0,0 +1,18 @@
+ .text
+ .type foo, %gnu_indirect_function
+.globl foo
+ .type foo, @function
+foo:
+ ret
+ .size foo, .-foo
+ .type start,"function"
+ .global start
+start:
+ .type _start,"function"
+ .global _start
+_start:
+ .type __start,"function"
+ .global __start
+__start:
+ .type __start,"function"
+ movl foo, %eax