* gcc.c-torture/execute/
20031003-1.c: Enable only when INT_MAX
==
2147483647.
From-SVN: r72549
+2003-10-16 Kazu Hirata <kazu@cs.umass.edu>
+
+ * gcc.c-torture/execute/20031003-1.c: Enable only when INT_MAX
+ == 2147483647.
+
2003-10-15 Kazu Hirata <kazu@cs.umass.edu>
* gcc.c-torture/execute/960416-1.x: Remove.
/* PR optimization/9325 */
+#include <limits.h>
+
extern void abort (void);
int f1()
int main()
{
+#if INT_MAX == 2147483647
if (f1() != 2147483647)
abort ();
if (f2() != 2147483647)
abort ();
+#endif
return 0;
}