[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64_32-null.ll
blobb4d6581a3ac5351681bda277ffe9ec9e0bee4632
1 ; RUN: llc -fast-isel=true  -global-isel=false -O0 -mtriple=arm64_32-apple-ios %s -o - | FileCheck %s
2 ; RUN: llc -fast-isel=false -global-isel=false -O0 -mtriple=arm64_32-apple-ios %s -o - | FileCheck %s
4 define void @test_store(ptr %p) {
5 ; CHECK-LABEL: test_store:
6 ; CHECK: mov [[R1:w[0-9]+]], wzr
7 ; CHECK: str [[R1]], [x0]
9   store ptr null, ptr %p
10   ret void
13 define void @test_phi(ptr %p) {
14 ; CHECK-LABEL: test_phi:
15 ; CHECK: mov [[R1:x[0-9]+]], xzr
16 ; CHECK: str [[R1]], [sp, #8]
17 ; CHECK: b [[BB:LBB[0-9_]+]]
18 ; CHECK: [[BB]]:
19 ; CHECK: ldr x0, [sp, #8]
20 ; CHECK: mov w8, w0
21 ; CHECK: str w8, [x{{.*}}]
23 bb0:
24   br label %bb1
25 bb1:
26   %tmp0 = phi ptr [ null, %bb0 ]
27   store ptr %tmp0, ptr %p
28   ret void