X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.dg%2F20020104-1.c;fp=gcc%2Ftestsuite%2Fgcc.dg%2F20020104-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=be36a7427ae1536f628b44f6529b79f150237df4;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/gcc.dg/20020104-1.c b/gcc/testsuite/gcc.dg/20020104-1.c deleted file mode 100644 index be36a742..00000000 --- a/gcc/testsuite/gcc.dg/20020104-1.c +++ /dev/null @@ -1,22 +0,0 @@ -/* Test whether statement with no effect warnings are not given for last - statements inside of statement expression. */ -/* { dg-do compile } */ -/* { dg-options "-O -Wall" } */ - -void bar (char *p, char *q); - -int main() -{ - char foo [32], *p; - - ({ - void *s = (foo); - __builtin_memset (s, '\0', sizeof (foo)); - s; /* { dg-warning "no effect" "statement with no effect warning" } */ - s; /* { dg-bogus "no effect" "bogus statement with no effect warning" } */ - }); - p = foo; - p; /* { dg-warning "no effect" "statement with no effect warning" } */ - bar (foo, p); - return 0; -}