]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr57980.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr57980.c
CommitLineData
4e115102
MP
1/* PR tree-optimization/57980 */
2/* { dg-do compile } */
022bd4c2 3/* { dg-options "-O -foptimize-sibling-calls -w" } */
4e115102 4
022bd4c2 5typedef int V __attribute__ ((vector_size (2 * sizeof (int))));
4e115102
MP
6extern V f (void);
7
8V
9bar (void)
10{
11 return -f ();
12}
13
14V
15foo (void)
16{
17 V v = { };
18 return v - f ();
19}