OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-6.C
1 /* { dg-do compile } */
2 /* { dg-options "-Wstrict-aliasing=2 -O2" } */
3
4 int foo ()
5 {
6   char buf[8];
7   return *((int *)buf); /* { dg-warning "strict-aliasing" } */
8 }
9