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
431 B
LLVM
12 lines
431 B
LLVM
; RUN: opt < %s -passes=globalopt -S | FileCheck %s
|
|
; CHECK-NOT: %G
|
|
|
|
@G = internal global i32 0 ; <i32*> [#uses=1]
|
|
@H = internal global { i32* } { i32* @G } ; <{ i32* }*> [#uses=1]
|
|
|
|
define i32 @loadg() {
|
|
%G = load i32*, i32** getelementptr ({ i32* }, { i32* }* @H, i32 0, i32 0) ; <i32*> [#uses=1]
|
|
%GV = load i32, i32* %G ; <i32> [#uses=1]
|
|
ret i32 %GV
|
|
}
|