1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll

11 lines
188 B
LLVM
Raw Normal View History

; RUN: opt < %s -instcombine -S | 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
}