OSDN Git Service

2012-01-03 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / pr46233.c
1 /* PR tree-optimization/46233 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -fno-tree-dce" } */
4
5 int
6 foo ()
7 {
8   int i = 0;
9   while (1)
10     i += foo ();
11 }