diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:49:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:49:41 +0000 |
commit | 33de427cd6cb506e29c50139bd966ce4577a1c98 (patch) | |
tree | 098c1c14f5031bf69a044271c28bac87845aad84 /llvm/lib/AsmParser/LLParser.h | |
parent | 4649a73cc3ddee98a9bf814fd426286c3c85abdc (diff) | |
download | bcm5719-llvm-33de427cd6cb506e29c50139bd966ce4577a1c98.tar.gz bcm5719-llvm-33de427cd6cb506e29c50139bd966ce4577a1c98.zip |
remove parser support for the obsolete "multiple return values" syntax, which
was replaced with return of a "first class aggregate".
llvm-svn: 133245
Diffstat (limited to 'llvm/lib/AsmParser/LLParser.h')
-rw-r--r-- | llvm/lib/AsmParser/LLParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.h b/llvm/lib/AsmParser/LLParser.h index bbc641cc4d8..ddc03f7ebc1 100644 --- a/llvm/lib/AsmParser/LLParser.h +++ b/llvm/lib/AsmParser/LLParser.h @@ -340,7 +340,7 @@ namespace llvm { PerFunctionState &PFS); bool ParseCmpPredicate(unsigned &Pred, unsigned Opc); - int ParseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS); + bool ParseRet(Instruction *&Inst, BasicBlock *BB, PerFunctionState &PFS); bool ParseBr(Instruction *&Inst, PerFunctionState &PFS); bool ParseSwitch(Instruction *&Inst, PerFunctionState &PFS); bool ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS); |