Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / compound-literal-2.c
blob7e2f304005a1032de349c9667e888e8e3ef08cdd
1 /* PR C/30265, invalid gimple was produced because we did not mark
2 the compound literal's decl early enough. */
4 int f(float *);
5 int g(float x)
7 return f(&(float){x}) + f(&x);