New testcase, distilled from povray I think.

llvm-svn: 12364
This commit is contained in:
Chris Lattner 2004-03-13 23:53:04 +00:00
parent 2dc85b27e4
commit e561cb51de
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,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
}