2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000715-2.c
blobbfee0c369b88ee0ef5e07c7a0dcce099043a859f
1 extern void abort(void);
2 extern void exit(int);
4 unsigned int foo(unsigned int a)
6 return ((unsigned char)(a + 1)) * 4;
9 int main(void)
11 if (foo((unsigned char)~0))
12 abort ();
13 exit(0);