brintos

brintos / llvm-project-archived public Read only

0
0
Text · 204 B · bbf6a27 Raw
12 lines · plain
1; RUN: llc < %s | FileCheck %s2 3target triple = "thumbv7-linux-androideabi"4 5define i1 @f() {6  %a = alloca ptr7  ; CHECK: adds.w r0, sp, #08  ; CHECK: it ne9  %cmp = icmp ne ptr %a, null10  ret i1 %cmp11}12