diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-14 16:44:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-14 16:44:41 +0000 |
commit | 6c4be9c23bbe2512a264d2d4f890d6655b96139b (patch) | |
tree | c4eeb54d5c3afb45e7c675f9cf6b1b9cc0e91224 /docs/tutorial/LangImpl4.html | |
parent | d660f973dc69801615545c74409e77888869aae2 (diff) |
improve diagnostics in call parsing, patch suggested by
Matthijs Kooijman
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl4.html')
-rw-r--r-- | docs/tutorial/LangImpl4.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl4.html b/docs/tutorial/LangImpl4.html index 41b58c76e0..999c194bf9 100644 --- a/docs/tutorial/LangImpl4.html +++ b/docs/tutorial/LangImpl4.html @@ -714,7 +714,7 @@ static ExprAST *ParseIdentifierExpr() { if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } } |