llvm-6502/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll
Chris Lattner 1034a3928d testcase reduced from pr1107
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33186 91177308-0d34-0410-b5e6-96231b3b80d8
2007-01-13 23:11:45 +00:00

10 lines
191 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep zext
; PR1107
define i1 %test(i8 %A, i8 %B) {
%a = zext i8 %A to i32
%b = zext i8 %B to i32
%c = icmp sgt i32 %a, %b
ret i1 %c
}