OSDN Git Service

2009-07-17 Richard Guenther <rguenther@suse.de>
[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