diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:24:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-04 19:24:11 +0000 |
commit | b3afb1f07656a1cc222fc65fe10cf62638459994 (patch) | |
tree | f5b0f105f01feb874a4bbb4531a6ac0174baf0e9 /lib/Bytecode/Reader/ReaderInternals.h | |
parent | 8b88b3b5bfb84723adeb6491e238f43f88d4b973 (diff) |
Add debug support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2105 91177308-0d34-0410-b5e6-96231b3b80d8
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... |