1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-02 00:42:52 +01:00
llvm-mirror/test/Transforms/InstCombine/2004-12-08-RemInfiniteLoop.ll
2008-03-01 09:15:35 +00:00

8 lines
147 B
LLVM

; RUN: llvm-as < %s | opt -instcombine
define i32 @test(i32 %X) {
%Y = srem i32 %X, undef ; <i32> [#uses=1]
ret i32 %Y
}