diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-02-04 15:45:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-04 15:45:03 +0530 |
commit | 4313345f2eeeb1e2ea7127a056ec4e1aaaa7fefb (patch) | |
tree | e694dbe6a067e43cec03593a683aaf53db5c3dcb /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 2f2ac3de69dde902c9fe84bdd7faeee320498130 (diff) | |
download | llvm-4313345f2eeeb1e2ea7127a056ec4e1aaaa7fefb.zip llvm-4313345f2eeeb1e2ea7127a056ec4e1aaaa7fefb.tar.gz llvm-4313345f2eeeb1e2ea7127a056ec4e1aaaa7fefb.tar.bz2 |
[CodeGen][NewPM] Port MachineCopyPropagation to NPM (#125202)
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp index 5f0c7ec9c..0a7937e 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -77,7 +77,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeMachineCFGPrinterPass(Registry); initializeMachineCSELegacyPass(Registry); initializeMachineCombinerPass(Registry); - initializeMachineCopyPropagationPass(Registry); + initializeMachineCopyPropagationLegacyPass(Registry); initializeMachineCycleInfoPrinterPassPass(Registry); initializeMachineCycleInfoWrapperPassPass(Registry); initializeMachineDominatorTreeWrapperPassPass(Registry); |