aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/CodeGen.cpp
diff options
context:
space:
mode:
authorFrederik Harwath <frederik.harwath@amd.com>2025-03-14 13:11:45 +0100
committerGitHub <noreply@github.com>2025-03-14 13:11:45 +0100
commit6962cf1700c28d76882e188d8e401486fe051bd4 (patch)
tree1eddeb378b0b9e70912b99ded005708aa01512f0 /llvm/lib/CodeGen/CodeGen.cpp
parent73e93ec3a2ab33050337b3f9daffaea689e99bbc (diff)
downloadllvm-6962cf1700c28d76882e188d8e401486fe051bd4.zip
llvm-6962cf1700c28d76882e188d8e401486fe051bd4.tar.gz
llvm-6962cf1700c28d76882e188d8e401486fe051bd4.tar.bz2
Rename ExpandLargeFpConvertPass to ExpandFpPass (#131128)
This is meant as a preparation for PR #130988 "[AMDGPU] Implement IR expansion for frem instruction" which implements the expansion of another instruction in this pass. The more general name seems more appropriate given this change and quite reasonable even without it.
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 53bd025..531476a 100644
--- a/llvm/lib/CodeGen/CodeGen.cpp
+++ b/llvm/lib/CodeGen/CodeGen.cpp
@@ -40,7 +40,7 @@ void llvm::initializeCodeGen(PassRegistry &Registry) {
initializeEarlyMachineLICMPass(Registry);
initializeEarlyTailDuplicateLegacyPass(Registry);
initializeExpandLargeDivRemLegacyPassPass(Registry);
- initializeExpandLargeFpConvertLegacyPassPass(Registry);
+ initializeExpandFpLegacyPassPass(Registry);
initializeExpandMemCmpLegacyPassPass(Registry);
initializeExpandPostRALegacyPass(Registry);
initializeFEntryInserterPass(Registry);