]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20010329-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010329-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20010329-1.c b/gcc/testsuite/gcc.c-torture/execute/20010329-1.c
deleted file mode 100644 (file)
index e28d6d7..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <limits.h>
-
-int main (void)
-{
-  void *x = ((void *)((unsigned int)INT_MAX + 2));
-  void *y = ((void *)((unsigned long)LONG_MAX + 2));
-  if (x >= ((void *)((unsigned int)INT_MAX + 1))
-      && x <= ((void *)((unsigned int)INT_MAX + 6))
-      && y >= ((void *)((unsigned long)LONG_MAX + 1))
-      && y <= ((void *)((unsigned long)LONG_MAX + 6)))
-    exit (0);
-  else
-    abort ();
-}