summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/sext-ret-val.ll
blob: 946e6c78892ef9486cf5de1d7b1aa48f98e0aa42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llvm-as < %s | llc -march=x86 | grep movzbl | count 1
; rdar://6699246

define signext i8 @t1(i8* %A) nounwind readnone ssp {
entry:
        %0 = icmp ne i8* %A, null
        %1 = zext i1 %0 to i8
        ret i8 %1
}

define i8 @t2(i8* %A) nounwind readnone ssp {
entry:
        %0 = icmp ne i8* %A, null
        %1 = zext i1 %0 to i8
        ret i8 %1
}
OpenPOWER on IntegriCloud