]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-elfvers/vers6.c
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-elfvers / vers6.c
1 /*
2 * Testcase to make sure that if we externally reference a versioned symbol
3 * that we always get the right one.
4 */
5
6 main()
7 {
8 printf("Expect 4, get %d\n", foo_1());
9 printf("Expect 13, get %d\n", foo_2());
10 printf("Expect 103, get %d\n", foo_3());
11 printf("Expect 1003, get %d\n", foo_4());
12 }
13
14 __asm__(".symver foo_1,show_foo@");
15 __asm__(".symver foo_2,show_foo@VERS_1.1");
16 __asm__(".symver foo_3,show_foo@VERS_1.2");
17 __asm__(".symver foo_4,show_foo@VERS_2.0");