diff options
Diffstat (limited to 'clang/test/CodeGen/arm-swiftcall.c')
-rw-r--r-- | clang/test/CodeGen/arm-swiftcall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/arm-swiftcall.c b/clang/test/CodeGen/arm-swiftcall.c index 53109a3f681..75229c40a11 100644 --- a/clang/test/CodeGen/arm-swiftcall.c +++ b/clang/test/CodeGen/arm-swiftcall.c @@ -64,8 +64,8 @@ typedef double double2 __attribute__((ext_vector_type(2))); typedef double double4 __attribute__((ext_vector_type(4))); typedef int int3 __attribute__((ext_vector_type(3))); typedef int int4 __attribute__((ext_vector_type(4))); -typedef int int5 __attribute__((ext_vector_type(5))); -typedef int int8 __attribute__((ext_vector_type(8))); +typedef int int5 __attribute__((ext_vector_type(5))) __attribute__((aligned(32))); +typedef int int8 __attribute__((ext_vector_type(8))) __attribute__((aligned(32))); typedef char char16 __attribute__((ext_vector_type(16))); typedef short short8 __attribute__((ext_vector_type(8))); typedef long long long2 __attribute__((ext_vector_type(2))); |