[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / SCCP / preserve-analysis.ll
bloba332e73d2524a5db0a36954016b94cc0f495541f
1 ; RUN: opt < %s -debug-pass-manager -passes='loop-vectorize,sccp,loop-vectorize' 2>&1 -S | FileCheck --check-prefix=NEW-PM %s
3 ; Check CFG-only analysis are 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-DAG: Running analysis: AssumptionAnalysis on test
9 ; NEW-PM-DAG: Running analysis: TargetLibraryAnalysis on test
10 ; NEW-PM-DAG: Running analysis: TargetIRAnalysis on test
11 ; NEW-PM: Running pass: SCCPPass on test
12 ; NEW-PM-NOT: Running analysis: LoopAnalysis on test
13 ; NEW-PM-NOT: Running analysis: DominatorTreeAnalysis on test
14 ; NEW-PM-NOT: Running analysis: AssumptionAnalysis on test
15 ; NEW-PM-NOT: Running analysis: TargetLibraryAnalysis on test
16 ; NEW-PM-NOT: Running analysis: TargetIRAnalysis on test
19 define i32 @test() {
20 entry:
21   %res = add i32 1, 10
22   ret i32 %res