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 | f87e0521284c2882dd6ae36441ae69f6a23665c5 (patch) | |
| tree | c5f8e6e99acdd0e1e96c7668b2cd42ebaa5be9f9 /llvm/docs/tutorial/LangImpl4.html | |
| parent | 16a8a3be41494279bb3cf932e641b2e0e896a3ff (diff) | |
| download | bcm5719-llvm-f87e0521284c2882dd6ae36441ae69f6a23665c5.tar.gz bcm5719-llvm-f87e0521284c2882dd6ae36441ae69f6a23665c5.zip | |
improve diagnostics in call parsing, patch suggested by
Matthijs Kooijman
llvm-svn: 49648
Diffstat (limited to 'llvm/docs/tutorial/LangImpl4.html')
| -rw-r--r-- | llvm/docs/tutorial/LangImpl4.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/LangImpl4.html b/llvm/docs/tutorial/LangImpl4.html index 41b58c76e03..999c194bf98 100644 --- a/llvm/docs/tutorial/LangImpl4.html +++ b/llvm/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(); } } |

