summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2004-03-13-InstCombineInfLoop.ll
blob: 9e77df948a225750b64c9b0a90f2ba7b50b3aabd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; 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
}