You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
414 B
6 lines
414 B
// RUN: %clang_cc1 -emit-llvm -fexperimental-new-pass-manager -mllvm -print-before-all %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-BEFORE
|
|
// RUN: %clang_cc1 -emit-llvm -fexperimental-new-pass-manager -mllvm -print-after-all %s -o %t 2>&1 | FileCheck %s --check-prefix=CHECK-AFTER
|
|
// CHECK-BEFORE: *** IR Dump Before AlwaysInlinerPass ***
|
|
// CHECK-AFTER: *** IR Dump After AlwaysInlinerPass ***
|
|
void foo() {}
|