OSDN Git Service

* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / vector10.C
1 // PR c++/34914
2 // { dg-do compile }
3
4 struct A { int __attribute ((vector_size (8))) x; };
5
6 void
7 foo ()
8 {
9   __attribute ((vector_size (8))) int A::*p;
10   p == 0;
11 }