Add an UNSPEC_PROLOGUE_USE to prevent the link register from being considered dead.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ns / ns12.C
blob40f5b7cfe2592db4e1826bd852ab0dc983093fa4
1 namespace fred
3   int barney();
4   extern int wilma;
7 int fred::barney()
9   return fred::wilma;
12 int fred::wilma;
14 int barney()
16   return 1;
19 int main()
21   return fred::barney();