diff options
author | Chris Lattner <sabre@nondot.org> | 2003-03-06 17:15:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-03-06 17:15:19 +0000 |
commit | 2a7b6bab7a539cebbad20d0e90685aa68fb4f789 (patch) | |
tree | 62b555dfe5f1086f2ef8e2c2c17464615caee2e5 /lib/Bytecode/Reader/ReaderInternals.h | |
parent | b6c46959fdca7d430245c0a70cc990b83c8194be (diff) |
Continue simplifying error handling, s/method/function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/ReaderInternals.h')
-rw-r--r-- | lib/Bytecode/Reader/ReaderInternals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Bytecode/Reader/ReaderInternals.h b/lib/Bytecode/Reader/ReaderInternals.h index 8f65677821..e077ea6bf8 100644 --- a/lib/Bytecode/Reader/ReaderInternals.h +++ b/lib/Bytecode/Reader/ReaderInternals.h @@ -89,10 +89,10 @@ private: // All of this data is transient across calls to ParseBytecode std::vector<std::pair<const PointerType *, unsigned> > FunctionSignatureList; private: - bool ParseModule (const uchar * Buf, const uchar *End, Module *&); - bool ParseModuleGlobalInfo(const uchar *&Buf, const uchar *End, Module *); + 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, Module *); + bool ParseMethod (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*/); |