Add debug support

llvm-svn: 2105
diff --git a/llvm/lib/Bytecode/Reader/ReaderInternals.h b/llvm/lib/Bytecode/Reader/ReaderInternals.h
index d36ea6d..47cde2a 100644
--- a/llvm/lib/Bytecode/Reader/ReaderInternals.h
+++ b/llvm/lib/Bytecode/Reader/ReaderInternals.h
@@ -52,6 +52,10 @@
 
   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...