summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2007-01-13-ExtCompareMiscompile.ll
blob: a5ee87b9efbbdb9a067c021a1d09abd9b465fe95 (plain)
1
2
3
4
5
6
7
8
9
; 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
}