]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/gcc.c-torture/compile/pr17397.c
re PR middle-end/17397 (gimplify ICE)
[gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr17397.c
1 /* ICE due to invalid GIMPLE created during strlen simplification. */
2
3 extern unsigned long strlen (__const char *__s);
4 extern void bar ();
5 extern int cols;
6
7 void foo (void)
8 {
9 char s[cols + 2];
10 if (strlen (s) > 0)
11 bar ();
12 }
This page took 0.035831 seconds and 5 git commands to generate.