From 6962cf1700c28d76882e188d8e401486fe051bd4 Mon Sep 17 00:00:00 2001 From: Frederik Harwath Date: Fri, 14 Mar 2025 13:11:45 +0100 Subject: 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. --- llvm/lib/CodeGen/CodeGen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/CodeGen/CodeGen.cpp') 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); -- cgit v1.1