Daily bump.
[official-gcc.git] / gcc / testsuite / g++.dg / lto / pr70929_0.C
blobc96fb1c743ad493dda61114292eee5ab3c27fdaa
1 // { dg-lto-do run }
2 // { dg-lto-options { "-O3 -flto" } }
4 struct s
6   int a;
7   s() {a=1;}
8   ~s() {}
9 };
10 int t(struct s s);
11 int main()
13   s s;
14   int v=t(s);
15   if (!__builtin_constant_p (v))
16     __builtin_abort ();
17   return 0;