Handle unsigned constants for module I/O.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920721-1.c
blobe5fabbde4373f2ab557133e501b87409a5271ac1
1 void abort (void);
2 void exit (int);
3 long f(short a,short b){return (long)a/b;}
4 int main(void){if(f(-32768,-1)!=32768L)abort();else exit(0);}