]> granicus.if.org Git - clang/commitdiff
Fix crash in cleanup attr handling
authorAlp Toker <alp@nuanti.com>
Sun, 20 Oct 2013 18:48:56 +0000 (18:48 +0000)
committerAlp Toker <alp@nuanti.com>
Sun, 20 Oct 2013 18:48:56 +0000 (18:48 +0000)
ResolveSingleFunctionTemplateSpecialization() returns 0 and doesn't emit diags
unless the expression has template-ids, so we must null check the result.

Also add a better diag noting which overloads are causing the problem.

Reviewed by Aaron Ballman.

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

include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaDeclAttr.cpp
lib/Sema/SemaOverload.cpp
test/SemaCXX/attr-cleanup.cpp

index 55c4e9d57b5b29c196fa757295a934ed4b76eff8..d582ad5ad7d4b0320287ba0f0f61a756919e9a43 100644 (file)
@@ -2365,7 +2365,7 @@ def warn_cleanup_ext : Warning<
   "than a simple identifier">, 
   InGroup<GccCompat>;
 def err_attribute_cleanup_arg_not_function : Error<
-  "'cleanup' argument %select{|%1 }0is not a function">;
+  "'cleanup' argument %select{|%1 |%1 }0is not a %select{||single }0function">;
 def err_attribute_cleanup_func_must_take_one_arg : Error<
   "'cleanup' function %0 must take 1 parameter">;
 def err_attribute_cleanup_func_arg_incompatible_type : Error<
index 3eabf87624c03dec9442af1ad2e2f3709b8822fa..a71d3c0d7b5aebf527f55db99c71338b7cee51f7 100644 (file)
@@ -2899,10 +2899,15 @@ static void handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) {
   } else if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
     if (ULE->hasExplicitTemplateArgs())
       S.Diag(Loc, diag::warn_cleanup_ext);
-
-    // This will diagnose the case where the function cannot be found.
     FD = S.ResolveSingleFunctionTemplateSpecialization(ULE, true);
     NI = ULE->getNameInfo();
+    if (!FD) {
+      S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 2
+        << NI.getName();
+      if (ULE->getType() == S.Context.OverloadTy)
+        S.NoteAllOverloadCandidates(ULE);
+      return;
+    }
   } else {
     S.Diag(Loc, diag::err_attribute_cleanup_arg_not_function) << 0;
     return;
index 6dbb7b6cc57f1f438e73480b2a85a7463c58a31a..20cfb00584d20f0971def7a5179bc84a9321b65a 100644 (file)
@@ -9672,6 +9672,9 @@ Sema::ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr,
 /// template, where that template-id refers to a single template whose template
 /// arguments are either provided by the template-id or have defaults,
 /// as described in C++0x [temp.arg.explicit]p3.
+///
+/// If no template-ids are found, no diagnostics are emitted and NULL is
+/// returned.
 FunctionDecl *
 Sema::ResolveSingleFunctionTemplateSpecialization(OverloadExpr *ovl, 
                                                   bool Complain,
index b6c58533acf2b1be1713dced48929c579d427483..764df997decf9f8e695af4187ab36cec026d1dbe 100644 (file)
@@ -19,3 +19,11 @@ class D : public C {
     int v1 __attribute__((cleanup(c2)));  // expected-error {{'c2' is a private member of 'C'}}\r
   }\r
 };\r
+\r
+namespace E {\r
+  void c3(int *a) {} // expected-note {{candidate function}}\r
+  void c3() {}       // expected-note {{candidate function}}\r
+  void t3() {\r
+    int v1 __attribute__((cleanup(c3))); // expected-error {{'c3' is not a single function}}\r
+  }\r
+}\r