diff options
author | Akshat Oke <Akshat.Oke@amd.com> | 2025-02-26 12:11:22 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-26 12:11:22 +0530 |
commit | fe13cb985c77902c0bc8f6f999d9b18d6b39ed01 (patch) | |
tree | 4b2bb43cb5551da116a5271bb0956a88f84a6b06 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 75aff78f64d2f915b38be1c3635eb6f0f9911514 (diff) | |
download | llvm-fe13cb985c77902c0bc8f6f999d9b18d6b39ed01.zip llvm-fe13cb985c77902c0bc8f6f999d9b18d6b39ed01.tar.gz llvm-fe13cb985c77902c0bc8f6f999d9b18d6b39ed01.tar.bz2 |
[CodeGen][NewPM] Port RegAllocGreedy to NPM (#119540)
Leaving out NPM command line support for the next patch.
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 046a3ee..6311ec2 100644 --- a/llvm/lib/CodeGen/CodeGen.cpp +++ b/llvm/lib/CodeGen/CodeGen.cpp @@ -112,7 +112,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) { initializePreISelIntrinsicLoweringLegacyPassPass(Registry); initializeProcessImplicitDefsPass(Registry); initializeRABasicPass(Registry); - initializeRAGreedyPass(Registry); + initializeRAGreedyLegacyPass(Registry); initializeRegAllocFastPass(Registry); initializeRegUsageInfoCollectorLegacyPass(Registry); initializeRegUsageInfoPropagationLegacyPass(Registry); |