summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elfvers/vers18.c
diff options
context:
space:
mode:
Diffstat (limited to 'ld/testsuite/ld-elfvers/vers18.c')
-rw-r--r--ld/testsuite/ld-elfvers/vers18.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/ld/testsuite/ld-elfvers/vers18.c b/ld/testsuite/ld-elfvers/vers18.c
deleted file mode 100644
index 25dcc25999c..00000000000
--- a/ld/testsuite/ld-elfvers/vers18.c
+++ /dev/null
@@ -1,42 +0,0 @@
-int
-bar ()
-{
- return 3;
-}
-
-#pragma weak hide_original_foo
-
-int
-hide_original_foo ()
-{
- return 1 + bar ();
-}
-
-#pragma weak hide_old_foo
-
-int
-hide_old_foo ()
-{
- return 10 + bar();
-}
-
-#pragma weak hide_old_foo1
-
-int
-hide_old_foo1 ()
-{
- return 100 + bar ();
-}
-
-#pragma weak hide_new_foo
-
-int
-hide_new_foo ()
-{
- return 1000 + bar ();
-}
-
-__asm__(".symver hide_original_foo,show_foo@");
-__asm__(".symver hide_old_foo,show_foo@VERS_1.1");
-__asm__(".symver hide_old_foo1,show_foo@VERS_1.2");
-__asm__(".symver hide_new_foo,show_foo@@VERS_2.0");