diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-26 17:03:44 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2007-09-26 17:03:44 +0000 |
commit | 095ffca8c5f69df5826fea8714b7f50a1313d7c6 (patch) | |
tree | 7be450a25b56391c838b4b43d4c182930263948c | |
parent | ccc213f5d4034bb6fcda14cad112d9029a508b66 (diff) |
Removed a few TODOs on things which are done.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42358 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Parse/ParseExpr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Parse/ParseExpr.cpp b/Parse/ParseExpr.cpp index 1a7c403bd7..6bdde19032 100644 --- a/Parse/ParseExpr.cpp +++ b/Parse/ParseExpr.cpp @@ -439,10 +439,10 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, unsigned MinPrec) { /// [GNU] '__builtin_choose_expr' '(' assign-expr ',' assign-expr ',' /// assign-expr ')' /// [GNU] '__builtin_types_compatible_p' '(' type-name ',' type-name ')' -/// [OBJC] '[' objc-message-expr ']' [TODO] +/// [OBJC] '[' objc-message-expr ']' /// [OBJC] '@selector' '(' objc-selector-arg ')' [TODO] -/// [OBJC] '@protocol' '(' identifier ')' [TODO] -/// [OBJC] '@encode' '(' type-name ')' [TODO] +/// [OBJC] '@protocol' '(' identifier ')' +/// [OBJC] '@encode' '(' type-name ')' /// [OBJC] objc-string-literal /// [C++] 'const_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] /// [C++] 'dynamic_cast' '<' type-name '>' '(' expression ')' [C++ 5.2p1] |