
This patch moves the seed collection logic from the BottomUpVec pass into a new Sandbox IR Function pass. The new "seed-collection" pass collects the seeds, builds a region and runs the region pass pipeline.
15 lines
392 B
LLVM
15 lines
392 B
LLVM
; RUN: opt -passes=sandbox-vectorizer -sbvec-print-pass-pipeline %s -disable-output | FileCheck %s
|
|
|
|
; !!!WARNING!!! This won't get updated by update_test_checks.py !
|
|
|
|
; This checks the default pass pipeline for the sandbox vectorizer.
|
|
define void @pipeline() {
|
|
; CHECK: fpm
|
|
; CHECK: seed-collection
|
|
; CHECK: rpm
|
|
; CHECK: bottom-up-vec
|
|
; CHECK: tr-accept-or-revert
|
|
; CHECK-EMPTY:
|
|
ret void
|
|
}
|