The stream to read from is now an ivar

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36615 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2007-05-01 05:01:34 +00:00
parent 48f848716e
commit 866971474c
2 changed files with 18 additions and 20 deletions

View File

@@ -23,7 +23,6 @@
#include <vector>
namespace llvm {
class BitstreamReader;
class MemoryBuffer;
class BitcodeReaderValueList : public User {
@@ -117,12 +116,12 @@ public:
private:
const Type *getTypeByID(unsigned ID, bool isTypeTable = false);
bool ParseModule(BitstreamReader &Stream, const std::string &ModuleID);
bool ParseTypeTable(BitstreamReader &Stream);
bool ParseTypeSymbolTable(BitstreamReader &Stream);
bool ParseValueSymbolTable(BitstreamReader &Stream);
bool ParseConstants(BitstreamReader &Stream);
bool ParseFunction(BitstreamReader &Stream);
bool ParseModule(const std::string &ModuleID);
bool ParseTypeTable();
bool ParseTypeSymbolTable();
bool ParseValueSymbolTable();
bool ParseConstants();
bool ParseFunction();
bool ResolveGlobalAndAliasInits();
};