hanchenye-llvm-project/llvm/test/Transforms/InstCombine/2004-08-09-RemInfLoop.llx

9 lines
182 B
Plaintext
Raw Normal View History

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