aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/CodeGen.cpp
diff options
context:
space:
mode:
authorAkshat Oke <Akshat.Oke@amd.com>2024-12-06 15:16:07 +0530
committerGitHub <noreply@github.com>2024-12-06 15:16:07 +0530
commit2c7ece2e8cf58d607f870ca9f02302df8aaa75d4 (patch)
tree165aee948ccca8a94b6b9bac209e7e4b19e774ed /llvm/lib/CodeGen/CodeGen.cpp
parent91d6e10cca4ea8d50927aba024f33c9076785d3a (diff)
downloadllvm-2c7ece2e8cf58d607f870ca9f02302df8aaa75d4.zip
llvm-2c7ece2e8cf58d607f870ca9f02302df8aaa75d4.tar.gz
llvm-2c7ece2e8cf58d607f870ca9f02302df8aaa75d4.tar.bz2
[CodeGen][NewPM] Port LiveStacks analysis to NPM (#118778)
Diffstat (limited to 'llvm/lib/CodeGen/CodeGen.cpp')
-rw-r--r--llvm/lib/CodeGen/CodeGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGen.cpp b/llvm/lib/CodeGen/CodeGen.cpp
index 5942881..8efe540 100644
--- a/llvm/lib/CodeGen/CodeGen.cpp
+++ b/llvm/lib/CodeGen/CodeGen.cpp
@@ -62,7 +62,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) {
initializeLiveDebugVariablesWrapperLegacyPass(Registry);
initializeLiveIntervalsWrapperPassPass(Registry);
initializeLiveRangeShrinkPass(Registry);
- initializeLiveStacksPass(Registry);
+ initializeLiveStacksWrapperLegacyPass(Registry);
initializeLiveVariablesWrapperPassPass(Registry);
initializeLocalStackSlotPassPass(Registry);
initializeLowerGlobalDtorsLegacyPassPass(Registry);