From 6c4be9c23bbe2512a264d2d4f890d6655b96139b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 14 Apr 2008 16:44:41 +0000 Subject: 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 --- docs/tutorial/LangImpl7.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/tutorial/LangImpl7.html') diff --git a/docs/tutorial/LangImpl7.html b/docs/tutorial/LangImpl7.html index 6d82fa9dbd..fc8f1302ff 100644 --- a/docs/tutorial/LangImpl7.html +++ b/docs/tutorial/LangImpl7.html @@ -1286,7 +1286,7 @@ static ExprAST *ParseIdentifierExpr() { if (CurTok == ')') break; if (CurTok != ',') - return Error("Expected ')'"); + return Error("Expected ')' or ',' in argument list"); getNextToken(); } } -- cgit v1.2.3