* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr56484.c
blob894862cd461c4ebf669b66b94697ed2e4f3021c3
1 /* PR rtl-optimization/56484 */
3 unsigned char b[4096];
4 int bar (void);
6 int
7 foo (void)
9 int a = 0;
10 while (bar ())
12 int c = bar ();
13 a = a < 0 ? a : c;
14 __builtin_memset (b, 0, sizeof b);
16 return a;