diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index d36ea6def62..47cde2adc0e 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -52,6 +52,10 @@ public: std::string getError() const { return Error; } + void dump() const { + cerr << "BytecodeParser instance!\n"; + } + private: // All of this data is transient across calls to ParseBytecode Module *TheModule; // Current Module being read into...