1; RUN: llc -march=arm64 < %s | FileCheck %s
2
3target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
4target triple = "arm64-apple-ios7.0.0"
5
6; Function Attrs: nounwind ssp uwtable
7define i32 @test1() #0 {
8  %tmp1 = alloca i8
9  %tmp2 = alloca i32, i32 4096
10  %tmp3 = icmp eq i8* %tmp1, null
11  %tmp4 = zext i1 %tmp3 to i32
12
13  ret i32 %tmp4
14
15  ; CHECK-LABEL: test1
16  ; CHECK:   adds [[TEMP:[a-z0-9]+]], sp, #4, lsl #12
17  ; CHECK:   adds [[TEMP]], [[TEMP]], #15
18}
19