[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / large-stack-cmp.ll
blob68a76b79df930d02385a8fddd8424930c1f7bdc5
1 ; RUN: llc -mtriple=arm64-apple-ios %s -o - | FileCheck %s
3 define void @foo() {
4 ; CHECK-LABEL: foo:
5 ; CHECK: adds [[TMP:x[0-9]+]], sp,
6 ; CHECK: cmn [[TMP]],
8 %var = alloca i32, i32 12
9   %var2 = alloca i32, i32 1030
10   %tst = icmp eq i32* %var, null
11   br i1 %tst, label %true, label %false
13 true:
14   call void @bar()
15   ret void
17 false:
18   call void @baz()
19   ret void
22 declare void @bar()
23 declare void @baz()