summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/AArch64/arm64_32-null.ll
blob: 9d62c56248b5e1f76d0d8d896a105f2708e69cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
; RUN: llc -fast-isel=true  -global-isel=false -O0 -mtriple=arm64_32-apple-ios %s -o - | FileCheck %s
; RUN: llc -fast-isel=false -global-isel=false -O0 -mtriple=arm64_32-apple-ios %s -o - | FileCheck %s

define void @test_store(i8** %p) {
; CHECK-LABEL: test_store:
; CHECK: mov [[R1:w[0-9]+]], wzr
; CHECK: str [[R1]], [x0]

  store i8* null, i8** %p
  ret void
}

define void @test_phi(i8** %p) {
; CHECK-LABEL: test_phi:
; CHECK: mov [[R1:x[0-9]+]], xzr
; CHECK: str [[R1]], [sp]
; CHECK: b [[BB:LBB[0-9_]+]]
; CHECK: [[BB]]:
; CHECK: ldr x0, [sp]
; CHECK: str w0, [x{{.*}}]

bb0:
  br label %bb1
bb1:
  %tmp0 = phi i8* [ null, %bb0 ]
  store i8* %tmp0, i8** %p
  ret void
}
OpenPOWER on IntegriCloud