]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / PYRBUG.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c b/gcc/testsuite/gcc.c-torture/unsorted/PYRBUG.c
deleted file mode 100644 (file)
index c64c3f5..0000000
+++ /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;
-}