diff options
Diffstat (limited to 'test/Sema/types.c')
-rw-r--r-- | test/Sema/types.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/types.c b/test/Sema/types.c index 1232e472ea..e7d4b00a4d 100644 --- a/test/Sema/types.c +++ b/test/Sema/types.c @@ -34,3 +34,6 @@ int j[42]; // expected-error {{redefinition of 'j' with a different type}} // rdar://6880104 _Decimal32 x; // expected-error {{GNU decimal type extension not supported}} + +// rdar://6880951 +int __attribute__ ((vector_size (8), vector_size (8))) v; // expected-error {{invalid vector type}} |