From 75fadfc774a230cc54a4dd0dceb1b55e1ecad4b1 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Tue, 7 Mar 2017 20:59:08 +0000 Subject: Implement FreeMachineFunction::getPassName(). llvm-svn: 297222 --- llvm/lib/CodeGen/MachineModuleInfo.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp') diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp index 6618857..2f0f429 100644 --- a/llvm/lib/CodeGen/MachineModuleInfo.cpp +++ b/llvm/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 -- cgit v1.1