2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr27116-2.c
blob9c748b245f5234760a1b957f3e34ba280476db6e
1 /* { dg-do run } */
3 extern void abort(void);
5 int main (void)
7 volatile long int n;
8 n = -2;
10 if ((-2147483647L - 1L) / (-n) != -1073741824L)
11 abort ();
12 return 0;