2021-04-29 15:29:42 +08:00
|
|
|
// Test that we print pass structure with new and legacy PM.
|
2021-05-08 05:32:20 +08:00
|
|
|
// RUN: %clang -fexperimental-new-pass-manager -fdebug-pass-structure -fintegrated-as -O3 -S -emit-llvm %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=NEWPM --strict-whitespace
|
2021-04-29 15:29:42 +08:00
|
|
|
// RUN: %clang -flegacy-pass-manager -fdebug-pass-structure -O0 -S -emit-llvm %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=LEGACYPM
|
2021-04-29 22:01:37 +08:00
|
|
|
// REQUIRES: asserts
|
2021-04-29 15:29:42 +08:00
|
|
|
|
2021-05-08 05:32:20 +08:00
|
|
|
// should have proper indentation, should not print any analysis information
|
|
|
|
// NEWPM-NOT: Running analysis
|
|
|
|
// NEWPM: {{^}}Running{{.*}}GlobalOptPass
|
|
|
|
// NEWPM: {{^}} Running{{.*}}RequireAnalysisPass{{.*}}GlobalsAA
|
|
|
|
// NEWPM: GlobalOptPass
|
|
|
|
// NEWPM-NOT: Invalidating analysis
|
2021-04-29 15:29:42 +08:00
|
|
|
|
2021-05-08 05:32:20 +08:00
|
|
|
// LEGACYPM: Pass Arguments:
|
2021-04-29 15:29:42 +08:00
|
|
|
|
2021-05-08 05:32:20 +08:00
|
|
|
void f() {}
|