Files
clang-p2996/llvm/test/Transforms/GlobalOpt/2009-03-06-Anonymous.ll
Bjorn Pettersson 8ebb3eac02 [test] Use -passes syntax when specifying pipeline in some more tests
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
2021-11-27 09:52:55 +01:00

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
}