OSDN Git Service

* g++.dg/ext/attrib35.C: Fix target selector string.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vector3.C
1 /* { dg-do compile } */
2 /* { dg-options "" } */
3
4 // PR c++/28302
5
6 int __attribute__((vector_size(8))) x;
7
8 void foo()
9 {
10   ~x;
11 }
12