]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20000403-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20000403-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20000403-1.c b/gcc/testsuite/gcc.c-torture/execute/20000403-1.c
deleted file mode 100644 (file)
index 8bcd6f1..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-extern unsigned long aa[], bb[];
-
-int seqgt (unsigned long a, unsigned short win, unsigned long b);
-
-int seqgt2 (unsigned long a, unsigned short win, unsigned long b);
-
-main()
-{
-  if (! seqgt (*aa, 0x1000, *bb) || ! seqgt2 (*aa, 0x1000, *bb))
-    abort ();
-
-  exit (0);
-}
-
-int
-seqgt (unsigned long a, unsigned short win, unsigned long b)
-{
-  return (long) ((a + win) - b) > 0;
-}
-
-int
-seqgt2 (unsigned long a, unsigned short win, unsigned long b)
-{
-  long l = ((a + win) - b);
-  return l > 0;
-}
-
-unsigned long aa[] = { (1UL << (sizeof (long) * 8 - 1)) - 0xfff };
-unsigned long bb[] = { (1UL << (sizeof (long) * 8 - 1)) - 0xfff };