mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
s/Method/Function in variable and method names
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5715 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -76,7 +76,7 @@ private: // All of this data is transient across calls to ParseBytecode
|
||||
//
|
||||
typedef std::vector<PATypeHandle<Type> > TypeValuesListTy;
|
||||
TypeValuesListTy ModuleTypeValues;
|
||||
TypeValuesListTy MethodTypeValues;
|
||||
TypeValuesListTy FunctionTypeValues;
|
||||
|
||||
// Information read from the ModuleGlobalInfo section of the file...
|
||||
unsigned FirstDerivedTyID;
|
||||
@ -92,7 +92,7 @@ private:
|
||||
bool ParseModule (const uchar * Buf, const uchar *End);
|
||||
bool ParseModuleGlobalInfo(const uchar *&Buf, const uchar *End);
|
||||
bool ParseSymbolTable (const uchar *&Buf, const uchar *End, SymbolTable *);
|
||||
bool ParseMethod (const uchar *&Buf, const uchar *End);
|
||||
bool ParseFunction (const uchar *&Buf, const uchar *End);
|
||||
bool ParseBasicBlock (const uchar *&Buf, const uchar *End, BasicBlock *&);
|
||||
bool ParseInstruction (const uchar *&Buf, const uchar *End, Instruction *&,
|
||||
BasicBlock *BB /*HACK*/);
|
||||
|
Reference in New Issue
Block a user