diff options
author | Frederik Harwath <frederik.harwath@amd.com> | 2025-03-14 13:11:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-14 13:11:45 +0100 |
commit | 6962cf1700c28d76882e188d8e401486fe051bd4 (patch) | |
tree | 1eddeb378b0b9e70912b99ded005708aa01512f0 /llvm/lib/CodeGen/CodeGen.cpp | |
parent | 73e93ec3a2ab33050337b3f9daffaea689e99bbc (diff) | |
download | llvm-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.cpp | 2 |
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); |