Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / nontrivial-struct-param-init.m
blob79c97d98185437e62386599aa175851ca916569e
1 // RUN: %clang_cc1 -triple i386-apple-watchos6.0-simulator -emit-llvm -fblocks -fobjc-arc -o - %s | FileCheck %s
3 // CHECK: %[[STRUCT_S:.*]] = type { ptr }
5 typedef struct {
6   id x;
7 } S;
9 // CHECK: define{{.*}} void @test0(ptr %[[A_0:.*]])
10 // CHECK: %[[A:.*]] = alloca %[[STRUCT_S]], align 4
11 // CHECK: %[[X:.*]] = getelementptr inbounds %[[STRUCT_S]], ptr %[[A]], i32 0, i32 0
12 // CHECK: store ptr %[[A_0]], ptr %[[X]], align 4
13 // CHECK: call void @__destructor_4_s0(ptr %[[A]]) #2
15 void test0(S a) {