Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / SCCP / preserve-analysis.ll
blob7e61f9ba5fb78e080992da4688c1f02ad10ffa08
1 ; RUN: opt < %s -debug-pass-manager -passes='loop-vectorize,sccp,loop-vectorize' 2>&1 -S | FileCheck --check-prefix=NEW-PM %s
3 ; Check that DT is preserved by SCCP by running it between 2
4 ; loop-vectorize runs.
6 ; NEW-PM-DAG: Running analysis: LoopAnalysis on test
7 ; NEW-PM-DAG: Running analysis: DominatorTreeAnalysis on test
8 ; NEW-PM: Running pass: SCCPPass on test
9 ; NEW-PM: Running analysis: TargetLibraryAnalysis on test
10 ; NEW-PM: Running analysis: LoopAnalysis on test
11 ; NEW-PM-NOT: Running analysis: DominatorTreeAnalysis on test
12 ; NEW-PM-NOT: Running analysis: AssumptionAnalysis on test
13 ; NEW-PM-NOT: Running analysis: TargetLibraryAnalysis on test
14 ; NEW-PM-NOT: Running analysis: TargetIRAnalysis on test
17 define i32 @test() {
18 entry:
19   %res = add i32 1, 10
20   ret i32 %res