Add debug support

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2105 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-04 19:24:11 +00:00
parent 8b88b3b5bf
commit b3afb1f076

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