]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr51557.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr51557.c
CommitLineData
d734e6c4
JJ
1/* PR debug/51557 */
2/* { dg-do compile { target powerpc*-*-* ia64-*-* i?86-*-* x86_64-*-* } } */
3/* { dg-options "-Os -fno-asynchronous-unwind-tables -g -fsel-sched-pipelining -fselective-scheduling2" } */
4
5extern int baz (void);
6extern void bar (int, int, int, int, int, int, int);
7
8void
9synth (int *values, int n_values, int ci, int s1, int v, int s2)
10{
11 while (--s1)
12 {
13 int r1 = values[s1];
14 int co = ci ? r1 : baz () < r1;
15 bar (0, n_values, s1, s2, v, co, 0);
16 }
17}