Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
fbb4d1e43d0db9f8d1514a0209bb01f56e49d75f
/
.
/
llvm
/
test
/
Transforms
/
InstCombine
/
2007-01-13-ExtCompareMiscompile.ll
blob: 635a09ca93c7c19b8840eb51e17b575ae1f230a8 [
file
] [
log
] [
blame
]
; 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
}