summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-06-17 06:49:41 +0000
committerChris Lattner <sabre@nondot.org>2011-06-17 06:49:41 +0000
commit437544f25c1a6f6a00a2ed245c935088dbf9963d (patch)
tree128d4e702259e02f491291b55558c2409b1f319d /lib/AsmParser/LLParser.h
parent6b7c89ee096146aefebc245c7d8741b69786655a (diff)
downloadllvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.tar.gz
llvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.tar.bz2
llvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.tar.xz
remove parser support for the obsolete "multiple return values" syntax, which
was replaced with return of a "first class aggregate". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.h')
-rw-r--r--lib/AsmParser/LLParser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.h b/lib/AsmParser/LLParser.h
index bbc641cc4d..ddc03f7ebc 100644
--- a/lib/AsmParser/LLParser.h
+++ b/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);