[llvm] AMDGPU/NewPM Port SILoadStoreOptimizer to NPM (PR #106362)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 29 02:31:09 PDT 2024
================
@@ -1,4 +1,5 @@
# RUN: llc -mtriple=amdgcn -mcpu=gfx1010 -run-pass=si-load-store-opt -verify-machineinstrs -o - %s | FileCheck %s
+# RUN: llc -mtriple=amdgcn -mcpu=gfx1010 -passes=si-load-store-opt -verify-machineinstrs -o - %s | FileCheck %s
----------------
paperchalice wrote:
Because verify is no longer a part in pass pipeline when using new pass manager. New pass manager introduces `PassInstrumentation`, verify now is now part of `StandardInstrumentations::Verify` which support both kinds of IRs. This can be disabled by option `--disable-verify`, but the doc string is not updated...
https://github.com/llvm/llvm-project/pull/106362
More information about the llvm-commits
mailing list