mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
400 B
LLVM
14 lines
400 B
LLVM
; 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-upgrade < %s | llvm-as | 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
|
|
}
|
|
|