Another step moving away from the deprecated syntax of specifying pass pipeline in opt. Differential Revision: https://reviews.llvm.org/D119081
8 lines
144 B
LLVM
8 lines
144 B
LLVM
; RUN: opt < %s -passes=instcombine
|
|
|
|
define i32 @test(i32 %X) {
|
|
%Y = srem i32 %X, undef ; <i32> [#uses=1]
|
|
ret i32 %Y
|
|
}
|
|
|