]> granicus.if.org Git - clang/commitdiff
Sema::ActOnIdentifierExpr(): Lookup block arguments.
authorSteve Naroff <snaroff@apple.com>
Wed, 10 Sep 2008 18:33:00 +0000 (18:33 +0000)
committerSteve Naroff <snaroff@apple.com>
Wed, 10 Sep 2008 18:33:00 +0000 (18:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56063 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExpr.cpp
test/Sema/block-args.c [new file with mode: 0644]

index 8a297ac1d7bd7e7a9c6b8a475cc6d6e4db2103c1..80b33f208794ceea97b17f997baa552a00f2ce77 100644 (file)
@@ -354,7 +354,12 @@ Sema::ExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
       return new PredefinedExpr(Loc, T, PredefinedExpr::ObjCSuper);
     }
   }
-  
+  // If we are parsing a block, check the block parameter list.
+  if (CurBlock) {
+    for (unsigned i = 0, e = CurBlock->Params.size(); i != e; ++i)
+      if (CurBlock->Params[i]->getIdentifier() == &II)
+        D = CurBlock->Params[i];
+  }
   if (D == 0) {
     // Otherwise, this could be an implicitly declared function reference (legal
     // in C90, extension in C99).
diff --git a/test/Sema/block-args.c b/test/Sema/block-args.c
new file mode 100644 (file)
index 0000000..d85d582
--- /dev/null
@@ -0,0 +1,24 @@
+// RUN: clang %s -fsyntax-only -verify
+
+void take(void*);
+
+void test() {
+  take(^(int x){});
+  take(^(int x, int y){});
+  take(^(int x, int y){});
+  take(^(int x, int x){});  // expected-error {{redefinition of parameter 'x'}}
+
+
+  take(^(int x) { return x+1; });
+
+  int (^CP)(int) = ^(int x) { return x*x; };
+  take(CP);
+
+  int arg;
+  ^{return 1;}();
+  ^{return 2;}(arg); // expected-error {{too many arguments to block call}}
+  ^(void){return 3;}(1); // expected-error {{too many arguments to block call}}
+  ^(){return 4;}(arg);   // C style (...), ok.
+  ^(int x, ...){return 5;}(arg, arg);   // Explicit varargs, ok.
+}
+