• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s | FileCheck %s
2
3target triple = "thumbv7-linux-androideabi"
4
5define i1 @f() {
6  %a = alloca i8*
7  ; CHECK: adds.w r0, sp, #0
8  ; CHECK: it ne
9  %cmp = icmp ne i8** %a, null
10  ret i1 %cmp
11}
12