llvm-6502/test/Transforms/InstCombine/2004-08-09-RemInfLoop.llx
2006-12-02 04:23:10 +00:00

9 lines
182 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine
; This testcase should not send the instcombiner into an infinite loop!
int %test(int %X) {
%Y = rem int %X, 0
ret int %Y
}