Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / g++.dg / pr70590.C
blob488620065ee4f75cbee402d54aee741020df4ebe
1 // PR c++/70590
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-O2" }
5 int a;
7 constexpr int *
8 foo ()
10   return &a;
13 void blah (int *);
15 int
16 bar ()
18   blah (foo ());
21 int
22 baz ()
24   blah (foo ());