[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / PowerPC / aix-alignment.c
blobe25fc7ec5599b3ab517ae16572c58528a6e24334
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc-unknown-aix -emit-llvm -o - %s | \
3 // RUN: FileCheck %s --check-prefixes=AIX,AIX32
4 // RUN: %clang_cc1 -triple powerpc64-unknown-aix -emit-llvm -o - %s | \
5 // RUN: FileCheck %s --check-prefixes=AIX,AIX64
7 // AIX: @d = global double 0.000000e+00, align 8
8 double d;
10 typedef struct {
11 double d;
12 int i;
13 } StructDouble;
15 // AIX: @d1 = global %struct.StructDouble zeroinitializer, align 8
16 StructDouble d1;
18 // AIX: double @retDouble(double noundef %x)
19 // AIX: %x.addr = alloca double, align 8
20 // AIX: store double %x, ptr %x.addr, align 8
21 // AIX: load double, ptr %x.addr, align 8
22 // AIX: ret double %0
23 double retDouble(double x) { return x; }
25 // AIX32: define void @bar(ptr noalias sret(%struct.StructDouble) align 4 %agg.result, ptr noundef byval(%struct.StructDouble) align 4 %x)
26 // AIX64: define void @bar(ptr noalias sret(%struct.StructDouble) align 4 %agg.result, ptr noundef byval(%struct.StructDouble) align 8 %x)
27 // AIX32: call void @llvm.memcpy.p0.p0.i32(ptr align 4 %agg.result, ptr align 4 %x, i32 16, i1 false)
28 // AIX64: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %agg.result, ptr align 8 %x, i64 16, i1 false)
29 StructDouble bar(StructDouble x) { return x; }
31 // AIX: define void @foo(ptr noundef %out, ptr noundef %in)
32 // AIX32: %0 = load ptr, ptr %in.addr, align 4
33 // AIX64: %0 = load ptr, ptr %in.addr, align 8
34 // AIX: %1 = load double, ptr %0, align 4
35 // AIX: %mul = fmul double %1, 2.000000e+00
36 // AIX32: %2 = load ptr, ptr %out.addr, align 4
37 // AIX64: %2 = load ptr, ptr %out.addr, align 8
38 // AIX: store double %mul, ptr %2, align 4
39 void foo(double *out, double *in) { *out = *in * 2; }