1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/2004-03-13-InstCombineInfLoop.ll

14 lines
385 B
LLVM
Raw Normal View History

; This testcase caused the combiner to go into an infinite loop, moving the
; cast back and forth, changing the seteq to operate on int vs uint and back.
; RUN: llvm-as < %s | opt -instcombine -disable-output
bool %test(uint %A, int %B) {
%C = sub uint 0, %A
%Cc = cast uint %C to int
%D = sub int 0, %B
%E = seteq int %Cc, %D
ret bool %E
}