mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-12 16:25:18 +00:00
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:
@@ -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();
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user