]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/990106-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990106-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/990106-2.c b/gcc/testsuite/gcc.c-torture/execute/990106-2.c
deleted file mode 100644 (file)
index c2791ef..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-unsigned calc_mp(unsigned mod)
-{
-      unsigned a,b,c;
-      c=-1;
-      a=c/mod;
-      b=0-a*mod;
-      if (b > mod) { a += 1; b-=mod; }
-      return b;
-}
-
-int main(int argc, char *argv[])
-{
-      unsigned x = 1234;
-      unsigned y = calc_mp(x);
-
-      if ((sizeof (y) == 4 && y != 680)
-         || (sizeof (y) == 2 && y != 134))
-       abort ();
-      exit (0);
-}
-
-