]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr67029.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr67029.c
1 /* { dg-do compile { target { int128 && scheduling } } } */
2 /* { dg-options "-O2 -fschedule-insns" } */
3 /* { dg-additional-options "-fstack-protector" { target fstack_protector } } */
4
5 extern void fn2 (char *);
6 __int128 a, b;
7 int
8 fn1 (void)
9 {
10 char e[32];
11 fn2 (e);
12 b = 9 * (a >> 1);
13 return 0;
14 }