1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/InstCombine/2004-12-08-RemInfiniteLoop.ll
2007-01-17 07:59:14 +00:00

7 lines
113 B
LLVM

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