PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr36765.c
blob6883b0cfd753f77c8618d1a26b6ba8eca4786e44
1 int __attribute__((noinline))
2 foo(int i)
4 int *p = __builtin_malloc (4 * sizeof(int));
5 *p = 0;
6 p[i] = 1;
7 return *p;
9 extern void abort (void);
10 int main()
12 if (foo(0) != 1)
13 abort ();
14 return 0;