1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix warning introduced in r238190 about lack of virtual destructor in MCObjectFileInfo.

llvm-svn: 238197
This commit is contained in:
Daniel Sanders 2015-05-26 12:25:36 +00:00
parent 5d72ee6887
commit c8220d68ac

View File

@ -188,6 +188,8 @@ protected:
MCSection *XDataSection;
public:
virtual ~MCObjectFileInfo() { };
void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM,
MCContext &ctx);