PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920711-1.c
blobde63b8f834d2d08554df8f047c82104be1d0516b
1 /* { dg-options "-fwrapv" } */
3 extern void abort (void);
4 extern void exit (int);
6 int f(long a){return (--a > 0);}
7 int main(){if(f(0x80000000L)==0)abort();exit(0);}