From 756472b879cd559f24bb0255422d8c727bd0b120 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Sat, 23 May 2020 20:44:12 -0700 Subject: [PATCH] ld: Add -Bsymbolic-functions tests PR ld/26018 * testsuite/ld-i386/i386.exp: Add a -Bsymbolic-functions test. * testsuite/ld-x86-64/x86-64.exp: Likewise. * testsuite/ld-i386/pr26018.d: New file. * testsuite/ld-x86-64/pr26018.d: Likewise. * testsuite/ld-x86-64/pr26018.s: Likewise. --- ld/testsuite/ld-i386/i386.exp | 1 + ld/testsuite/ld-i386/pr26018.d | 16 ++++++++++++++++ ld/testsuite/ld-x86-64/pr26018.d | 15 +++++++++++++++ ld/testsuite/ld-x86-64/pr26018.s | 7 +++++++ ld/testsuite/ld-x86-64/x86-64.exp | 1 + 5 files changed, 40 insertions(+) create mode 100644 ld/testsuite/ld-i386/pr26018.d create mode 100644 ld/testsuite/ld-x86-64/pr26018.d create mode 100644 ld/testsuite/ld-x86-64/pr26018.s diff --git a/ld/testsuite/ld-i386/i386.exp b/ld/testsuite/ld-i386/i386.exp index 7bb3636d3b..e3a5f8b195 100644 --- a/ld/testsuite/ld-i386/i386.exp +++ b/ld/testsuite/ld-i386/i386.exp @@ -496,6 +496,7 @@ run_dump_test "pr23930" run_dump_test "pr24322a" run_dump_test "pr24322b" run_dump_test "align-branch-1" +run_dump_test "pr26018" if { !([istarget "i?86-*-linux*"] || [istarget "i?86-*-gnu*"] diff --git a/ld/testsuite/ld-i386/pr26018.d b/ld/testsuite/ld-i386/pr26018.d new file mode 100644 index 0000000000..9ff16c1343 --- /dev/null +++ b/ld/testsuite/ld-i386/pr26018.d @@ -0,0 +1,16 @@ +#source: ../ld-x86-64/pr26018.s +#as: --32 +#ld: -shared -Bsymbolic-functions -melf_i386 +#objdump: -dw + +.*: +file format .* + + +Disassembly of section .text: + +[0-9a-f]+ <_start>: + +[a-f0-9]+: e8 00 00 00 00 call [0-9a-f]+ + +[0-9a-f]+ : + +[a-f0-9]+: c3 ret +#pass diff --git a/ld/testsuite/ld-x86-64/pr26018.d b/ld/testsuite/ld-x86-64/pr26018.d new file mode 100644 index 0000000000..c2003aa790 --- /dev/null +++ b/ld/testsuite/ld-x86-64/pr26018.d @@ -0,0 +1,15 @@ +#as: --64 +#ld: -shared -Bsymbolic-functions -melf_x86_64 +#objdump: -dw + +.*: +file format .* + + +Disassembly of section .text: + +[0-9a-f]+ <_start>: + +[a-f0-9]+: e8 00 00 00 00 callq [0-9a-f]+ + +[0-9a-f]+ : + +[a-f0-9]+: c3 retq +#pass diff --git a/ld/testsuite/ld-x86-64/pr26018.s b/ld/testsuite/ld-x86-64/pr26018.s new file mode 100644 index 0000000000..0b36f2bb11 --- /dev/null +++ b/ld/testsuite/ld-x86-64/pr26018.s @@ -0,0 +1,7 @@ + .global _start, foo + .type foo, %function + .text +_start: + call foo@PLT +foo: + ret diff --git a/ld/testsuite/ld-x86-64/x86-64.exp b/ld/testsuite/ld-x86-64/x86-64.exp index d2e5ac7205..9db16c6b6e 100644 --- a/ld/testsuite/ld-x86-64/x86-64.exp +++ b/ld/testsuite/ld-x86-64/x86-64.exp @@ -467,6 +467,7 @@ run_dump_test "pr25416-2a" run_dump_test "pr25416-2b" run_dump_test "pr25416-3" run_dump_test "pr25416-4" +run_dump_test "pr26018" if { ![istarget "x86_64-*-linux*"] && ![istarget "x86_64-*-nacl*"]} { return -- 2.26.2