]> granicus.if.org Git - clang/commitdiff
Per Eli Friedman's feedback, handle attribute 'malloc' being applied to
authorTed Kremenek <kremenek@apple.com>
Fri, 14 Aug 2009 22:03:27 +0000 (22:03 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 14 Aug 2009 22:03:27 +0000 (22:03 +0000)
declarations of function pointers.

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

lib/Sema/SemaDeclAttr.cpp
test/Sema/attr-malloc.c

index e65b3aa6fdfce2d14a9fb3e1087a17e37c700464..23fe4010fb0b6cda1739861b421d5eb95fa29e4c 100644 (file)
@@ -437,16 +437,16 @@ static void HandleMallocAttr(Decl *d, const AttributeList &Attr, Sema &S) {
     S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments) << 0;
     return;
   }
-
-  const FunctionDecl *FD = dyn_cast<FunctionDecl>(d);
-
-  if (!FD) {
+  
+  const FunctionType *FT = getFunctionType(d, false);
+  
+  if (!FT) {
     S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)
       << Attr.getName() << 0 /*function*/;
     return;
   }
 
-  QualType RetTy = FD->getResultType();
+  QualType RetTy = FT->getResultType();
   
   if (!(RetTy->isAnyPointerType() || RetTy->isBlockPointerType())) {
     S.Diag(Attr.getLoc(), diag::warn_attribute_malloc_pointer_only);
index 8841d6993a20477ae918a3cc95f1234e87c3ffa1..36e8b1d69947095cbd8fbdb86f1537d8ad836304 100644 (file)
@@ -7,12 +7,14 @@ int no_vars __attribute((malloc)); // expected-warning {{only applies to functio
 
 void  returns_void  (void) __attribute((malloc)); // expected-warning {{functions returning pointer type}}
 int   returns_int   (void) __attribute((malloc)); // expected-warning {{functions returning pointer type}}
-int * returns_intptr(void) __attribute((malloc));
+int * returns_intptr(void) __attribute((malloc)); // no-warning
 typedef int * iptr;
-iptr  returns_iptr  (void) __attribute((malloc));
+iptr  returns_iptr  (void) __attribute((malloc)); // no-warning
+
+__attribute((malloc)) void *(*f)(); // no-warning
 
 __attribute((malloc))
-void * xalloc(unsigned n) { return malloc(n); }
+void * xalloc(unsigned n) { return malloc(n); } // no-warning
 // RUN: grep 'define noalias .* @xalloc(' %t &&
 
 #define malloc_like __attribute((__malloc__))