2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20020104-1.c
blobbe36a7427ae1536f628b44f6529b79f150237df4
1 /* Test whether statement with no effect warnings are not given for last
2 statements inside of statement expression. */
3 /* { dg-do compile } */
4 /* { dg-options "-O -Wall" } */
6 void bar (char *p, char *q);
8 int main()
10 char foo [32], *p;
13 void *s = (foo);
14 __builtin_memset (s, '\0', sizeof (foo));
15 s; /* { dg-warning "no effect" "statement with no effect warning" } */
16 s; /* { dg-bogus "no effect" "bogus statement with no effect warning" } */
17 });
18 p = foo;
19 p; /* { dg-warning "no effect" "statement with no effect warning" } */
20 bar (foo, p);
21 return 0;