Add an UNSPEC_PROLOGUE_USE to prevent the link register from being considered dead.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.martin / conv1.C
blob0227800d3cfead959342d7f4a6a1e368363a7031
1 struct S{
2   operator bool()
3   {
4     return true;
5   }
6 };
8 int main()
10   S a;
11   if (S &b = a);