OSDN Git Service

2007-01-18 Hui-May Chang <hm.chang@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20000127-1.c
1 double bar(void), c;
2 int foo(void) {
3         double a, b;
4         int i = bar() + bar();
5         a = i; i += 1; a += 0.1; i = c + i;
6         return i;
7 }