]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/950607-2.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 950607-2.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/950607-2.c b/gcc/testsuite/gcc.c-torture/execute/950607-2.c
deleted file mode 100644 (file)
index da18f73..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-typedef struct {
-  long int p_x, p_y;
-} Point;
-
-int
-f (Point basePt, Point pt1, Point pt2)
-{
-  long long vector;
-
-  vector =
-    (long long) (pt1.p_x - basePt.p_x) * (long long) (pt2.p_y - basePt.p_y) -
-      (long long) (pt1.p_y - basePt.p_y) * (long long) (pt2.p_x - basePt.p_x);
-
-  if (vector > (long long) 0)
-    return 0;
-  else if (vector < (long long) 0)
-    return 1;
-  else
-    return 2;
-}
-
-main ()
-{
-  Point b, p1, p2;
-  int answer;
-
-  b.p_x = -23250;
-  b.p_y = 23250;
-
-  p1.p_x = 23250;
-  p1.p_y = -23250;
-
-  p2.p_x = -23250;
-  p2.p_y = -23250;
-
-  answer = f (b, p1, p2);
-
-  if (answer != 1)
-    abort ();
-  exit (0);
-}