2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010422-1.c
blob5c6bccc9ed134d6312ed8c4d55802492da0d7d4b
1 unsigned int foo(unsigned int x)
3 if (x < 5)
4 x = 4;
5 else
6 x = 8;
7 return x;
10 int main(void)
12 if (foo (8) != 8)
13 abort ();
14 exit (0);