Implement FreeMachineFunction::getPassName().

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297222 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Yaron Keren 2017-03-07 20:59:08 +00:00
parent 360f1e7c17
commit debb02e97a

View File

@ -306,6 +306,10 @@ public:
MMI.deleteMachineFunctionFor(F);
return true;
}
StringRef getPassName() const override {
return "Free MachineFunction";
}
};
char FreeMachineFunction::ID;
} // end anonymous namespace