diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-03-14 10:31:53 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-14 10:31:53 +0530 |
commit | 87916f8c32ebd8e284091db9b70339df57fd1e90 (patch) | |
tree | dbc7defc6dfa315691b3ad3767e3be7cf9806c69 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 42748a454fc9d9a42504e8290234aaf9407437ce (diff) | |
download | llvm-87916f8c32ebd8e284091db9b70339df57fd1e90.zip llvm-87916f8c32ebd8e284091db9b70339df57fd1e90.tar.gz llvm-87916f8c32ebd8e284091db9b70339df57fd1e90.tar.bz2 |
[CodeGen][NPM] Port MachineBlockPlacement to NPM (#129828)
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 8d108c2..53bd025 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -72,7 +72,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeMIRNamerPass(Registry); initializeMIRProfileLoaderPassPass(Registry); initializeMachineBlockFrequencyInfoWrapperPassPass(Registry); - initializeMachineBlockPlacementPass(Registry); + initializeMachineBlockPlacementLegacyPass(Registry); initializeMachineBlockPlacementStatsPass(Registry); initializeMachineCFGPrinterPass(Registry); initializeMachineCSELegacyPass(Registry); |