You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llc < %s | FileCheck %s
|
|
|
|
target triple = "thumbv7-linux-androideabi"
|
|
|
|
define i1 @f() {
|
|
%a = alloca i8*
|
|
; CHECK: adds.w r0, sp, #0
|
|
; CHECK: it ne
|
|
%cmp = icmp ne i8** %a, null
|
|
ret i1 %cmp
|
|
}
|