From: Chris Lattner Date: Thu, 4 Apr 2002 19:24:11 +0000 (+0000) Subject: Add debug support X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b3afb1f07656a1cc222fc65fe10cf62638459994;p=oota-llvm.git Add debug support git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2105 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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...