diff options
Diffstat (limited to 'ld/testsuite/ld-elfvers/vers24a.c')
-rw-r--r-- | ld/testsuite/ld-elfvers/vers24a.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/testsuite/ld-elfvers/vers24a.c b/ld/testsuite/ld-elfvers/vers24a.c index 7fef8d8..10073d4 100644 --- a/ld/testsuite/ld-elfvers/vers24a.c +++ b/ld/testsuite/ld-elfvers/vers24a.c @@ -1,5 +1,7 @@ /* Test whether .symver x, x@foo causes relocations against x within the same shared library to become dynamic relocations against x@foo. */ +#include "vers.h" + int x = 12; -__asm__ (".symver x, x@VERS.0"); +SYMVER(x, x@VERS.0); |