mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-03 14:21:30 +00:00
pipeline string. Add tests that cover this now that we have execution dumping in the pass managers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199005 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
981 B
LLVM
19 lines
981 B
LLVM
; RUN: opt -disable-output -debug-pass-manager \
|
|
; RUN: -passes=no-op-module,no-op-module %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefix=CHECK-TWO-NOOP-MP
|
|
; CHECK-TWO-NOOP-MP: Starting module pass manager
|
|
; CHECK-TWO-NOOP-MP: Running module pass: NoOpModulePass
|
|
; CHECK-TWO-NOOP-MP: Running module pass: NoOpModulePass
|
|
; CHECK-TWO-NOOP-MP: Finished module pass manager
|
|
|
|
; RUN: opt -disable-output -debug-pass-manager \
|
|
; RUN: -passes='module(no-op-module,no-op-module)' %s 2>&1 \
|
|
; RUN: | FileCheck %s --check-prefix=CHECK-NESTED-TWO-NOOP-MP
|
|
; CHECK-NESTED-TWO-NOOP-MP: Starting module pass manager
|
|
; CHECK-NESTED-TWO-NOOP-MP: Running module pass: ModulePassManager
|
|
; CHECK-NESTED-TWO-NOOP-MP: Starting module pass manager
|
|
; CHECK-NESTED-TWO-NOOP-MP: Running module pass: NoOpModulePass
|
|
; CHECK-NESTED-TWO-NOOP-MP: Running module pass: NoOpModulePass
|
|
; CHECK-NESTED-TWO-NOOP-MP: Finished module pass manager
|
|
; CHECK-NESTED-TWO-NOOP-MP: Finished module pass manager
|