diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-22 06:06:56 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-22 06:06:56 +0000 |
commit | 697e15f2a028f8997cccb24ecd05099988cfb1a9 (patch) | |
tree | d5e943ac5dd27c3d66b4239902ce2c68ffd9dea9 | |
parent | 38484403c8356fb41540ace6c74f28867f28feba (diff) |
update todo markers
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41267 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Parse/Parser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Parse/Parser.cpp b/Parse/Parser.cpp index 34c9ca6ca3..fdd5c98a51 100644 --- a/Parse/Parser.cpp +++ b/Parse/Parser.cpp @@ -352,10 +352,10 @@ Parser::DeclTy *Parser::ParseExternalDeclaration() { /// /// function-definition: [C99 6.9.1] /// declaration-specifiers[opt] declarator declaration-list[opt] -/// compound-statement [TODO] +/// compound-statement /// declaration: [C99 6.7] -/// declaration-specifiers init-declarator-list[opt] ';' [TODO] -/// [!C99] init-declarator-list ';' [TODO] +/// declaration-specifiers init-declarator-list[opt] ';' +/// [!C99] init-declarator-list ';' [TODO: warn in c99 mode] /// [OMP] threadprivate-directive [TODO] /// Parser::DeclTy *Parser::ParseDeclarationOrFunctionDefinition() { |