Wed Mar 12 21:44:19 1997 Eric Youngdale <eric@andante.jic.com>
[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 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");
This page took 0.031472 seconds and 5 git commands to generate.