diff --git a/test/CodeGen/X86/sext-ret-val.ll b/test/CodeGen/X86/sext-ret-val.ll new file mode 100644 index 00000000000..946e6c78892 --- /dev/null +++ b/test/CodeGen/X86/sext-ret-val.ll @@ -0,0 +1,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 +}