1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/2004-12-08-RemInfiniteLoop.ll

7 lines
98 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -instcombine
int %test(int %X) {
%Y = rem int %X, undef
ret int %Y
}