blob: b81195fdedfd1ae18af9a87e407a616b203f41c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-do compile } */
/* Check that subscripting of vectors work with register storage class decls. */
#define vector __attribute__((vector_size(16) ))
float vf(int i)
{
register vector float a; // { dg-warning "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
return a[0];
}
|