Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / warn / Wstrict-aliasing-3.C
blob9fc3538907352c78be30825f92d36f62243239c2
1 /* { dg-do compile } */
2 /* { dg-options "-Wstrict-aliasing=2 -O2" } */
4 double x;
6 template <typename T>
7 T *foo(void)
9   return (T *)&x; /* { dg-warning "strict-aliasing" } */
12 template int *foo<int>(void); /* { dg-warning "instantiated from here" } */
13 template char *foo<char>(void); /* { dg-bogus "instantiated from here" } */