1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 12:43:36 +01:00

Implement FreeMachineFunction::getPassName().

llvm-svn: 297222
This commit is contained in:
Yaron Keren 2017-03-07 20:59:08 +00:00
parent 7aefb2b5f4
commit 56489ac797

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