diff options
author | Akshat Oke <76596238+optimisan@users.noreply.github.com> | 2024-10-14 19:23:34 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-14 19:23:34 +0530 |
commit | cd6c2b80be024d4bc0f6ce70930369b913a5daae (patch) | |
tree | 8686323c4d1a7aedf170ad32663c472c880ac3e6 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | a3b0c31ebc2f6fe672f08f6b7d15f25a2b26edda (diff) | |
download | llvm-cd6c2b80be024d4bc0f6ce70930369b913a5daae.zip llvm-cd6c2b80be024d4bc0f6ce70930369b913a5daae.tar.gz llvm-cd6c2b80be024d4bc0f6ce70930369b913a5daae.tar.bz2 |
[NewPM][CodeGen] Port StackColoring to NPM (#111812)
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 16b8d45..48cc21ee 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -125,7 +125,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializeShrinkWrapPass(Registry); initializeSjLjEHPreparePass(Registry); initializeSlotIndexesWrapperPassPass(Registry); - initializeStackColoringPass(Registry); + initializeStackColoringLegacyPass(Registry); initializeStackFrameLayoutAnalysisPassPass(Registry); initializeStackMapLivenessPass(Registry); initializeStackProtectorPass(Registry); |