]> granicus.if.org Git - clang/commitdiff
PR4122: Tweak the ambiguity handling to handle (S())() correctly. I've
authorEli Friedman <eli.friedman@gmail.com>
Mon, 25 May 2009 19:41:42 +0000 (19:41 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Mon, 25 May 2009 19:41:42 +0000 (19:41 +0000)
left out handling for stuff like (S())++ for the moment.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72394 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/ParseExprCXX.cpp
test/Parser/cxx-ambig-paren-expr.cpp

index 5e6ba680679d283e60835d882db4cc7fff286502..681c6adb2ea9651863e8a82e03a55276ba558b47 100644 (file)
@@ -1088,12 +1088,17 @@ Parser::ParseCXXAmbiguousParenExpression(ParenParseOption &ExprType,
     ParseAs = CompoundLiteral;
   } else {
     bool NotCastExpr;
-    // Try parsing the cast-expression that may follow.
-    // If it is not a cast-expression, NotCastExpr will be true and no token
-    // will be consumed.
-    Result = ParseCastExpression(false/*isUnaryExpression*/,
-                                 false/*isAddressofOperand*/,
-                                 NotCastExpr);
+    // FIXME: Special-case ++ and --: "(S())++;" is not a cast-expression
+    if (Tok.is(tok::l_paren) && NextToken().is(tok::r_paren)) {
+      NotCastExpr = true;
+    } else {
+      // Try parsing the cast-expression that may follow.
+      // If it is not a cast-expression, NotCastExpr will be true and no token
+      // will be consumed.
+      Result = ParseCastExpression(false/*isUnaryExpression*/,
+                                   false/*isAddressofOperand*/,
+                                   NotCastExpr);
+    }
 
     // If we parsed a cast-expression, it's really a type-id, otherwise it's
     // an expression.
index 00695612562b19cc9db0b8c81cbdb7f9cfaeb128..6f23b35d3e6bde2e8719d4472034cfb80db843d6 100644 (file)
@@ -16,4 +16,11 @@ void f() {
   typedef int *PT;
   // Make sure stuff inside the parens are parsed only once (only one warning).
   x = (PT()[(int){1}]); // expected-warning {{compound literals}}
+
+  // Special case: empty parens is a call, not an expression
+  struct S{int operator()();};
+  (S())();
+
+  // FIXME: Special case: "++" is postfix here, not prefix
+  // (S())++;
 }