aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-plugin
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-09-11 10:02:57 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-09-11 10:02:57 -0700
commit6d636d8c779d3be92dd5db021d12c2e3a2c5d419 (patch)
tree023d4cedaa14fd1cb400fab1878927121e64f5d4 /ld/testsuite/ld-plugin
parent669e74e8295e8aef1dc052f30ff30bad624eb0f6 (diff)
Add "ld -r" tests for PR ld/15323
Weak defined function is turned into non-weak defined function by "ld -r -flto" with GCC 5 due to a GCC 5 regression: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67548 Add "ld -r" tests for PR ld/15323 to make sure that any linker change won't introduce linker regression for PR ld/15323. * ld-plugin/lto.exp (lto_link_tests): Add a "ld -r" test for PR ld/15323. (lto_run_tests): Add a "ld -r" test for PR ld/15323.
Diffstat (limited to 'ld/testsuite/ld-plugin')
-rw-r--r--ld/testsuite/ld-plugin/lto.exp10
-rw-r--r--ld/testsuite/ld-plugin/pr15323a.c15
2 files changed, 20 insertions, 5 deletions
diff --git a/ld/testsuite/ld-plugin/lto.exp b/ld/testsuite/ld-plugin/lto.exp
index 6d9500bcf7..81e72b42c1 100644
--- a/ld/testsuite/ld-plugin/lto.exp
+++ b/ld/testsuite/ld-plugin/lto.exp
@@ -160,9 +160,12 @@ set lto_link_tests [list \
[list "PR ld/13287" \
"-flto -fuse-linker-plugin -Wl,--as-needed" "-flto" \
{pr13287.cc} {} "pr13287.exe" "c++"] \
- [list "PR ld/15323" \
+ [list "PR ld/15323 (1)" \
"" "-O2" \
{pr15323a.c} {} "" "c"] \
+ [list "PR ld/15323 (2)" \
+ "-O2 -flto -r -nostdlib" "-O2 -flto" \
+ {pr15323a.c} {} "pr15323a-r.o" "c"] \
[list "Compile(1) PR ld/pr16846" \
"" "-flto" \
{pr16846a.c pr16846b.c} {} ""] \
@@ -315,9 +318,12 @@ set lto_run_tests [list \
[list "PR ld/13201" \
"-O2 -flto -fuse-linker-plugin -Wl,--as-needed tmpdir/pr13201.o -lm" "" \
{dummy.c} "pr13201.exe" "pr13201.out" "" "c"] \
- [list "PR ld/15323" \
+ [list "PR ld/15323 (3)" \
"-O2 -flto -fuse-linker-plugin tmpdir/pr15323a.o" "" \
{pr15323b.c} "pr15323.exe" "pr15323.out" "-flto -O2" "c"] \
+ [list "PR ld/15323 (4)" \
+ "-O2 -flto tmpdir/pr15323a-r.o" "" \
+ {dummy.c} "pr15323a.exe" "pr15323.out" "-flto -O2" "c"] \
]
if { [at_least_gcc_version 4 7] } {
diff --git a/ld/testsuite/ld-plugin/pr15323a.c b/ld/testsuite/ld-plugin/pr15323a.c
index 02a365b564..9c38948f8d 100644
--- a/ld/testsuite/ld-plugin/pr15323a.c
+++ b/ld/testsuite/ld-plugin/pr15323a.c
@@ -1,14 +1,23 @@
#include <stdio.h>
int x;
+int y;
__attribute__((weak))
-void foobar (void) { x++; }
+void foobar (void) { y++; x++; }
int main (void)
{
foobar ();
- if (x == -1)
- printf ("OK\n");
+ if (y == 0)
+ {
+ if (x == -1)
+ printf ("OK\n");
+ }
+ else
+ {
+ if (x == 1)
+ printf ("OK\n");
+ }
return 0;
}