Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / aix-alignment.cpp
bloba8bb95814b1a4dd76b037b21ad4a2de03b3da8a9
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc-unknown-aix \
3 // RUN: -emit-llvm -o - -x c++ %s | \
4 // RUN: FileCheck %s --check-prefixes=AIX,AIX32
5 // RUN: %clang_cc1 -triple powerpc64-unknown-aix \
6 // RUN: -emit-llvm -o - %s -x c++| \
7 // RUN: FileCheck %s --check-prefixes=AIX,AIX64
9 struct B {
10 double d;
11 ~B() {}
14 // AIX32: %call = call noalias noundef nonnull ptr @_Znam(i32 noundef 8)
15 // AIX64: %call = call noalias noundef nonnull ptr @_Znam(i64 noundef 8)
16 B *allocBp() { return new B[0]; }
18 // AIX-LABEL: delete.notnull:
19 // AIX32: %0 = getelementptr inbounds i8, ptr %call, i32 -8
20 // AIX32: [[PTR:%.+]] = getelementptr inbounds i8, ptr %0, i32 4
21 // AIX64: [[PTR:%.+]] = getelementptr inbounds i8, ptr %call, i64 -8
22 // AIX: %{{.+}} = load i{{[0-9]+}}, ptr [[PTR]]
23 void bar() { delete[] allocBp(); }
25 typedef struct D {
26 double d;
27 int i;
29 ~D(){};
30 } D;
32 // AIX: define void @_Z3foo1D(ptr noalias sret(%struct.D) align 4 %agg.result, ptr noundef %x)
33 // AIX32 call void @llvm.memcpy.p0.p0.i32(ptr align 4 %agg.result, ptr align 4 %x, i32 16, i1 false)
34 // AIX64: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %agg.result, ptr align 4 %x, i64 16, i1 false)
35 D foo(D x) { return x; }