19990502 sourceware import
[deliverable/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 int
7 main()
8 {
9 printf("Expect 4, get %d\n", foo_1());
10 printf("Expect 13, get %d\n", foo_2());
11 printf("Expect 103, get %d\n", foo_3());
12 printf("Expect 1003, get %d\n", foo_4());
13 return 0;
14 }
15
16 __asm__(".symver foo_1,show_foo@");
17 __asm__(".symver foo_2,show_foo@VERS_1.1");
18 __asm__(".symver foo_3,show_foo@VERS_1.2");
19 __asm__(".symver foo_4,show_foo@VERS_2.0");
This page took 0.030929 seconds and 5 git commands to generate.