Files
swift-mirror/test/sil-passpipeline-dump/basic.test-sh
Michael Gottesman 52c5f721b9 [passmanager] Change SIL pass pipeline plan to use an LLVM YAML representation.
This eliminates a bunch of code and will make it significantly easier to
maintain/add to this code/use this code.
2020-03-11 14:14:18 -07:00

14 lines
525 B
Plaintext

// RUN: %sil-passpipeline-dumper -Onone | %FileCheck %s
// CHECK: ---
// CHECK: name: Mandatory Combines
// CHECK: passes: [ "for-each-loop-unroll", "mandatory-combine" ]
// CHECK: ---
// CHECK: name: Serialization
// CHECK: passes: [ "serialize-sil", "ownership-model-eliminator" ]
// CHECK: ---
// CHECK: name: Rest of Onone
// CHECK: passes: [ "use-prespecialized", "sil-assume-single-threaded",
// CHECK: "sil-debuginfo-gen" ]
// CHECK: ...