The legacy PM is deprecated, so update a bunch of lit tests running opt to use the new PM syntax when specifying the pipeline. In this patch focus has been put on test cases for ConstantMerge, ConstraintElimination, CorrelatedValuePropagation, GlobalDCE, GlobalOpt, SCCP, TailCallElim and PredicateInfo. Differential Revision: https://reviews.llvm.org/D114516
12 lines
204 B
LLVM
12 lines
204 B
LLVM
; RUN: opt < %s -passes=globaldce
|
|
;
|
|
define internal void @func() {
|
|
ret void
|
|
}
|
|
|
|
define void @main() {
|
|
%X = bitcast void ()* @func to i32* ; <i32*> [#uses=0]
|
|
ret void
|
|
}
|
|
|