repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ARM] Adjust how NEON shifts are lowered
[llvm-core.git]
/
test
/
CodeGen
/
ARM
/
i1.ll
blob
379cca192a2b758cc5c37297007a1423c536e9a4
1
; RUN: llc -mtriple=arm-eabi %s -o - | FileCheck %s
2
3
define i32 @test1() {
4
; CHECK-LABEL: test1:
5
; CHECK: mov r0, #0
6
; CHECK-NEXT: cmp r0, #0
7
entry:
8
br i1 undef, label %t, label %f
9
10
t:
11
ret i32 4
12
13
f:
14
ret i32 2
15
}