llvm-6502/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll
2008-01-28 17:38:46 +00:00

11 lines
206 B
LLVM

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {icmp ugt}
; PR1107
; PR1940
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
}