projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add test to show suboptimal load merging behavior
[oota-llvm.git]
/
test
/
CodeGen
/
X86
/
sext-ret-val.ll
1
; RUN: llc < %s -march=x86 | grep movzbl | count 1
2
; rdar://6699246
3
4
define signext i8 @t1(i8* %A) nounwind readnone ssp {
5
entry:
6
%0 = icmp ne i8* %A, null
7
%1 = zext i1 %0 to i8
8
ret i8 %1
9
}
10
11
define i8 @t2(i8* %A) nounwind readnone ssp {
12
entry:
13
%0 = icmp ne i8* %A, null
14
%1 = zext i1 %0 to i8
15
ret i8 %1
16
}