[llvm] [SystemZ] Add pass initialization for `CopyPhysRegs` pass (PR #132912)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 03:41:52 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-systemz
Author: Dominik Steenken (dominik-steenken)
<details>
<summary>Changes</summary>
This commit adds an initialization to `SystemZTargetMachine` for the `SystemZCopyPhysRegs` pass that was thus far missing. This will enable, e.g., to run tests for that pass via `llc --run-pass=systemz-copy-physregs`.
---
Full diff: https://github.com/llvm/llvm-project/pull/132912.diff
1 Files Affected:
- (modified) llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp (+1)
``````````diff
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
index 092515ee197a8..6300fb72990d0 100644
--- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
+++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
@@ -48,6 +48,7 @@ extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeSystemZTarget() {
initializeSystemZPostRewritePass(PR);
initializeSystemZTDCPassPass(PR);
initializeSystemZDAGToDAGISelLegacyPass(PR);
+ initializeSystemZCopyPhysRegsPass(PR);
}
static std::string computeDataLayout(const Triple &TT) {
``````````
</details>
https://github.com/llvm/llvm-project/pull/132912
More information about the llvm-commits
mailing list