PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / pr67029.c
blobf0023e524e9382bff7c66e2bf78cfaec28a3b8f0
1 /* { dg-do compile { target { int128 && scheduling } } } */
2 /* { dg-options "-O2 -fschedule-insns" } */
3 /* { dg-additional-options "-fstack-protector" { target fstack_protector } } */
5 extern void fn2 (char *);
6 __int128 a, b;
7 int
8 fn1 (void)
10 char e[32];
11 fn2 (e);
12 b = 9 * (a >> 1);
13 return 0;