diff options
Diffstat (limited to 'gcc_arm/testsuite/gcc.c-torture/unsorted/PYRBUG.c')
-rwxr-xr-x | gcc_arm/testsuite/gcc.c-torture/unsorted/PYRBUG.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc_arm/testsuite/gcc.c-torture/unsorted/PYRBUG.c b/gcc_arm/testsuite/gcc.c-torture/unsorted/PYRBUG.c deleted file mode 100755 index c64c3f5..0000000 --- a/gcc_arm/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; -} |