diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/950607-2.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/execute/950607-2.c | 41 |
1 files changed, 0 insertions, 41 deletions
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 100755 index da18f73..0000000 --- a/gcc/testsuite/gcc.c-torture/execute/950607-2.c +++ /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); -} |