Allow Objective-c++ to recognise lambdas.
authorIain Sandoe <iain@codesourcery.com>
Wed, 31 Dec 2014 13:58:16 +0000 (13:58 +0000)
committerIain Sandoe <iains@gcc.gnu.org>
Wed, 31 Dec 2014 13:58:16 +0000 (13:58 +0000)
gcc/cp:

* parser.c (cp_parser_primary_expression): If parsing an
objective-c++ message expression fails, see if a lambda is present.
(cp_parser_objc_message_receiver): Don't assume that, if a message
receiver expression fails, it is a hard error.

gcc/testsuite:

* obj-c++.dg/lambda-0.mm New.
* obj-c++.dg/lambda-1.mm New.
* obj-c++.dg/syntax-error-6.mm Adjust for revised error messages.

From-SVN: r219125

gcc/cp/ChangeLog
gcc/cp/parser.c
gcc/testsuite/ChangeLog
gcc/testsuite/obj-c++.dg/lambda-0.mm [new file with mode: 0644]
gcc/testsuite/obj-c++.dg/lambda-1.mm [new file with mode: 0644]
gcc/testsuite/obj-c++.dg/syntax-error-6.mm

index bd5dd4955956295c27a02272bd751e7075092ed3..a6ce50bc6858983ffbeebe4be019a6da1128f8ef 100644 (file)
@@ -1,3 +1,10 @@
+2014-12-31  Iain Sandoe  <iain@codesourcery.com>
+
+       * parser.c (cp_parser_primary_expression): If parsing an
+       objective-c++ message expression fails, see if a lambda is present.
+       (cp_parser_objc_message_receiver): Don't assume that, if a message
+       receiver expression fails, it is a hard error.
+
 2014-12-25  Jason Merrill  <jason@redhat.com>
 
        * pt.c (check_default_tmpl_args): Uses the parameter source
index 2af15763ce36e2bb51f7cd610ab241ee2ac41bcb..68940aab1c9e173223fc7bdd0f6ff2da181bd874 100644 (file)
@@ -4442,10 +4442,17 @@ cp_parser_primary_expression (cp_parser *parser,
       }
 
     case CPP_OPEN_SQUARE:
-      if (c_dialect_objc ())
-        /* We have an Objective-C++ message. */
-        return cp_parser_objc_expression (parser);
       {
+       if (c_dialect_objc ())
+         {
+           /* We might have an Objective-C++ message. */
+           cp_parser_parse_tentatively (parser);
+           tree msg = cp_parser_objc_message_expression (parser);
+           /* If that works out, we're done ... */
+           if (cp_parser_parse_definitely (parser))
+             return msg;
+           /* ... else, fall though to see if it's a lambda.  */
+         }
        tree lam = cp_parser_lambda_expression (parser);
        /* Don't warn about a failed tentative parse.  */
        if (cp_parser_error_occurred (parser))
@@ -25657,14 +25664,20 @@ cp_parser_objc_message_receiver (cp_parser* parser)
   cp_parser_parse_tentatively (parser);
   rcv = cp_parser_expression (parser);
 
+  /* If that worked out, fine.  */
   if (cp_parser_parse_definitely (parser))
     return rcv;
 
+  cp_parser_parse_tentatively (parser);
   rcv = cp_parser_simple_type_specifier (parser,
                                         /*decl_specs=*/NULL,
                                         CP_PARSER_FLAGS_NONE);
 
-  return objc_get_class_reference (rcv);
+  if (cp_parser_parse_definitely (parser))
+    return objc_get_class_reference (rcv);
+  
+  cp_parser_error (parser, "objective-c++ message receiver expected");
+  return error_mark_node;
 }
 
 /* Parse the arguments and selectors comprising an Objective-C message.
index 6e7a99e01d1162b3504d182f11bca0a0d0a84268..03531d386fcaf8deff4d98a62d40c01db08a1cb4 100644 (file)
@@ -1,3 +1,9 @@
+2014-12-31  Iain Sandoe  <iain@codesourcery.com>
+
+       * obj-c++.dg/lambda-0.mm New.
+       * obj-c++.dg/lambda-1.mm New.
+       * obj-c++.dg/syntax-error-6.mm Adjust for revised error messages.
+
 2014-12-31  Iain Sandoe  <iain@codesourcery.com>
 
        * obj-c++.dg/standard-headers.mm New.
diff --git a/gcc/testsuite/obj-c++.dg/lambda-0.mm b/gcc/testsuite/obj-c++.dg/lambda-0.mm
new file mode 100644 (file)
index 0000000..41482fd
--- /dev/null
@@ -0,0 +1,22 @@
+// Contributed by Iain Sandoe <iain@codesourcery.com>, December 2014.  */
+// { dg-do compile }
+// { dg-options "-std=c++11" }
+
+
+template<class Function>
+Function thing(Function fn, int a)
+{
+  fn(a);
+  return fn;
+}
+
+int
+test (int *arr, unsigned n)
+{
+  int total = 0;
+  for (unsigned i=0; i<n; i++) {
+    int a = arr[i];
+    thing ([&total] (int a) { total += a; }, a);
+  }
+  return total;
+}
diff --git a/gcc/testsuite/obj-c++.dg/lambda-1.mm b/gcc/testsuite/obj-c++.dg/lambda-1.mm
new file mode 100644 (file)
index 0000000..050d68d
--- /dev/null
@@ -0,0 +1,13 @@
+// Contributed by Iain Sandoe <iain@codesourcery.com>, December 2014.  */
+// { dg-do compile }
+// { dg-options "-std=c++11" }
+
+extern "C" {
+  int printf (const char *,...);
+}
+
+int main () 
+{
+  auto f = [] (const char *msg) -> int { printf("%s", msg); return 0; };
+  return f("Some test\n");
+}
index 21423ec7eb73b7c0e624e5df92c980129eadddc2..36a444f784dbed407796daca831d9f67fc221fcf 100644 (file)
@@ -8,5 +8,8 @@ void FOO()
 {
   NSButton * mCopyAcrobatCB; 
        
-  [ [ mCopyAcrobatCB state ] == 0 ] != 1;  /* { dg-error "objective\\-c\\+\\+" } */
+  [ [ mCopyAcrobatCB state ] == 0 ] != 1;  /* { dg-error "expected identifier before ... token" } */
+/* { dg-error "expected \\\'\\\{\\\' before \\\'!=\\\' token" "" { target *-*-* } 11 } */
+/* { dg-error "lambda expressions only available with" "" { target *-*-* } 11 } */
+/* { dg-error "no match for \\\'operator!=\\\' in" "" { target *-*-* } 11 } */
 }