mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

Differential Revision: https://reviews.llvm.org/D43807 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@326226 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
205 B
LLVM
12 lines
205 B
LLVM
; 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
|
|
}
|