1 // RUN: %clang_cc1 -triple i386-unknown-linux-gnu -emit-llvm %s -o - | FileCheck %s --check-prefixes=CHECK,NONCOFF
2 // RUN: %clang_cc1 -triple i386-unknown-windows-pc -emit-llvm %s -o - | FileCheck %s --check-prefixes=CHECK,COFF
4 __attribute((aligned(16))) float a
[128];
5 union {int a
[4]; __attribute((aligned(16))) float b
[4];} b
;
7 // CHECK: @a = {{.*}}zeroinitializer, align 16
8 // CHECK: @b = {{.*}}zeroinitializer, align 16
10 long long int test5
[1024];
11 // CHECK-DAG: @test5 = {{.*}}global [1024 x i64] zeroinitializer, align 8
13 // PR5279 - Reduced alignment on typedef.
14 typedef int myint
__attribute__((aligned(1)));
16 void test1(myint
*p
) {
20 // CHECK: store i32 0, ptr {{.*}}, align 1
23 int test1a(myint
*p
) {
27 // CHECK: load i32, ptr {{.*}}, align 1
31 // PR5279 - Reduced alignment on typedef.
32 typedef float __attribute__((vector_size(16), aligned(4))) packedfloat4
;
34 void test2(packedfloat4
*p
) {
35 *p
= (packedfloat4
) { 3.2f
, 2.3f
, 0.1f
, 0.0f
};
38 // CHECK: store <4 x float> {{.*}}, align 4
42 // PR5279 - Reduced alignment on typedef.
43 typedef float __attribute__((ext_vector_type(3), aligned(4))) packedfloat3
;
44 void test3(packedfloat3
*p
) {
45 *p
= (packedfloat3
) { 3.2f
, 2.3f
, 0.1f
};
48 // CHECK: store <4 x float> {{.*}}, align 4
53 typedef float __attribute__((vector_size(16), aligned(64))) float4align64
;
55 // rdar://10639962 - Typedef alignment lost in p[]-style dereferencing
56 void test4(float4align64
*p
) {
57 p
[0] = (float4align64
){ 3.2f
, 2.3f
, 0.1f
, 0.0f
};
60 // CHECK: store <4 x float> {{.*}}, ptr {{.*}}, align 64
62 // PR24944 - Typedef alignment not honored on no-op cast.
63 typedef float __attribute__((vector_size(16), aligned(16))) float4align16
;
64 typedef float __attribute__((vector_size(16), aligned(2))) float4align2
;
65 void test6(float4align64
*p
) {
66 float4align64 vec
= *(float4align2
*) p
;
68 // CHECK-LABEL: @test6
69 // CHECK: load <4 x float>, ptr {{.*}}, align 2
71 typedef int __attribute__((ext_vector_type(200 * 16))) BigVecTy
;
75 // CHECK-LABEL: @test7
76 // NONCOFF: alloca <3200 x i32>, align 16384
77 // COFF: alloca <3200 x i32>, align 8192