[llvm] Newpm/expand large fp convert (PR #71027)

Arthur Eubanks via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 2 12:32:02 PDT 2023


================
@@ -653,6 +654,13 @@ class ExpandLargeFpConvertLegacyPass : public FunctionPass {
 };
 } // namespace
 
+PreservedAnalyses ExpandLargeFpConvertPass::run(Function &F,
+                                                FunctionAnalysisManager &FAM) {
+  const TargetSubtargetInfo *STI = TM->getSubtargetImpl(F);
+  PreservedAnalyses PA = PreservedAnalyses::none();
----------------
aeubanks wrote:

I'd just inline this (ditto in the other file too)

https://github.com/llvm/llvm-project/pull/71027


More information about the llvm-commits mailing list