diff options
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r-- | lib/Bytecode/Reader/ReaderInternals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index d36ea6def6..47cde2adc0 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... |