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
24 lines
358 B
LLVM
24 lines
358 B
LLVM
; RUN: opt < %s -passes=globalopt -S | FileCheck %s
|
|
|
|
@0 = global i32 0
|
|
; CHECK-DAG: @0 = internal global i32 0
|
|
|
|
@1 = private global i32 0
|
|
; CHECK-DAG: @1 = private global i32 0
|
|
|
|
define i32* @2() {
|
|
ret i32* @0
|
|
}
|
|
; CHECK-DAG: define internal fastcc i32* @2()
|
|
|
|
define i32* @f() {
|
|
entry:
|
|
call i32* @2()
|
|
ret i32* %0
|
|
}
|
|
|
|
define i32* @g() {
|
|
entry:
|
|
ret i32* @1
|
|
}
|