mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
c072619922
llvm-svn: 47793
8 lines
147 B
LLVM
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
|
|
}
|
|
|