PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / pr57980.c
blobbe83536c5f712fbe083029f4d0a7a69c5f7cd08e
1 /* PR tree-optimization/57980 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -foptimize-sibling-calls -w" } */
5 typedef int V __attribute__ ((vector_size (2 * sizeof (int))));
6 extern V f (void);
9 bar (void)
11 return -f ();
15 foo (void)
17 V v = { };
18 return v - f ();