From: Yaron Keren Date: Tue, 7 Mar 2017 20:59:08 +0000 (+0000) Subject: Implement FreeMachineFunction::getPassName(). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=debb02e97a689a5a0944f34605796624d8445ad8;p=llvm Implement FreeMachineFunction::getPassName(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297222 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp index 6618857477e..2f0f4297ef5 100644 --- a/lib/CodeGen/MachineModuleInfo.cpp +++ b/lib/CodeGen/MachineModuleInfo.cpp @@ -306,6 +306,10 @@ public: MMI.deleteMachineFunctionFor(F); return true; } + + StringRef getPassName() const override { + return "Free MachineFunction"; + } }; char FreeMachineFunction::ID; } // end anonymous namespace