Add debug support

llvm-svn: 2105
This commit is contained in:
Chris Lattner 2002-04-04 19:24:11 +00:00
parent 30752bd910
commit 53659e8676
1 changed files with 4 additions and 0 deletions

View File

@ -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...