diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-03-03 11:26:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-03 11:26:17 +0530 |
commit | 69c8312c0ab30e0906a374ecfc88c60ea7ffe5a4 (patch) | |
tree | 029f2d94f54d7c00b92dc5794c2e3dbc6a4f7cae /llvm/lib/CodeGen/CodeGen.cpp | |
parent | e11867039f0806bdfebeb33bb71d8ce3ba8ee33d (diff) | |
download | llvm-69c8312c0ab30e0906a374ecfc88c60ea7ffe5a4.zip llvm-69c8312c0ab30e0906a374ecfc88c60ea7ffe5a4.tar.gz llvm-69c8312c0ab30e0906a374ecfc88c60ea7ffe5a4.tar.bz2 |
[CodeGen][NewPM] Port MachineCycleInfo to NPM (#114745)
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 6311ec2..96db2dc 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -78,7 +78,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeMachineCSELegacyPass(Registry); initializeMachineCombinerPass(Registry); initializeMachineCopyPropagationLegacyPass(Registry); - initializeMachineCycleInfoPrinterPassPass(Registry); + initializeMachineCycleInfoPrinterLegacyPass(Registry); initializeMachineCycleInfoWrapperPassPass(Registry); initializeMachineDominatorTreeWrapperPassPass(Registry); initializeMachineFunctionPrinterPassPass(Registry); |