X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20001013-1.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fexecute%2F20001013-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=0d139fc8039ca6cf361ea41f8df839de1e54ea21;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.c-torture/execute/20001013-1.c b/gcc/testsuite/gcc.c-torture/execute/20001013-1.c deleted file mode 100644 index 0d139fc8..00000000 --- a/gcc/testsuite/gcc.c-torture/execute/20001013-1.c +++ /dev/null @@ -1,17 +0,0 @@ -struct x { - int a, b; -} z = { -4028, 4096 }; - -int foo(struct x *p, int y) -{ - if ((y & 0xff) != y || -p->b >= p->a) - return 1; - return 0; -} - -main() -{ - if (foo (&z, 10)) - abort (); - exit (0); -}