[PATCH] D109310: [NPM] Added -print-pipeline-passes print params for a few passes.

Bjorn Pettersson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 14 11:01:50 PDT 2021


bjope added inline comments.


================
Comment at: llvm/test/Other/new-pm-print-pipeline.ll:19
 
-; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-5
-; CHECK-5: cgscc(argpromotion,require<no-op-cgscc>,no-op-cgscc,devirt<7>(inline,no-op-cgscc)),function(loop(require<no-op-loop>))
+; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-vectorize<no-interleave-forced-only;no-vectorize-forced-only>,loop-vectorize<interleave-forced-only;vectorize-forced-only>)' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-5
+; CHECK-5: function(loop-vectorize<no-interleave-forced-only;no-vectorize-forced-only;>,loop-vectorize<interleave-forced-only;vectorize-forced-only;>)
----------------
nit: Maybe nicer to leave the old "CHECK-5" test here, and move this one with loop-vectorizer params to the bottom (as CHECK-19 instead).


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D109310/new/

https://reviews.llvm.org/D109310



More information about the llvm-commits mailing list