mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-28 22:42:52 +01:00
7 lines
98 B
LLVM
7 lines
98 B
LLVM
; RUN: llvm-as < %s | opt -instcombine
|
|
|
|
int %test(int %X) {
|
|
%Y = rem int %X, undef
|
|
ret int %Y
|
|
}
|