1999-07-21 Philippe De Muyter <phdm@macqel.be>
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elfvers / vers6.c
CommitLineData
252b5132
RH
1/*
2 * Testcase to make sure that if we externally reference a versioned symbol
3 * that we always get the right one.
4 */
5
6int
7main()
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.027779 seconds and 4 git commands to generate.