aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c b/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c
deleted file mode 100644
index c64c3f5e1b2..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c
+++ /dev/null
@@ -1,17 +0,0 @@
-typedef struct
-{
- int v;
- int h;
-} Point;
-
-typedef struct
-{
- int top, left, bottom, right;
-} Rect;
-
-int
-x_PtInRect (Point pt, Rect *r)
-{
- return pt.v >= r->top && pt.v < r->bottom
- && pt.h >= r->left && pt.h < r->right;
-}