<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Aug 14, 2009, at 2:51 PM, Eli Friedman wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; ">On Fri, Aug 14, 2009 at 1:51 PM, Ted Kremenek<<a href="mailto:kremenek@apple.com">kremenek@apple.com</a>> wrote:<br><blockquote type="cite">--- cfe/trunk/lib/Sema/SemaDeclAttr.cpp (original)<br></blockquote><blockquote type="cite">+++ cfe/trunk/lib/Sema/SemaDeclAttr.cpp Fri Aug 14 15:51:58 2009<br></blockquote><blockquote type="cite">@@ -438,13 +438,14 @@<br></blockquote><blockquote type="cite">    return;<br></blockquote><blockquote type="cite">  }<br></blockquote><blockquote type="cite"><br></blockquote><blockquote type="cite">-  if (!isFunction(d)) {<br></blockquote><blockquote type="cite">+  const FunctionDecl *FD = dyn_cast<FunctionDecl>(d);<br></blockquote><blockquote type="cite">+<br></blockquote><blockquote type="cite">+  if (!FD) {<br></blockquote><blockquote type="cite">    S.Diag(Attr.getLoc(), diag::warn_attribute_wrong_decl_type)<br></blockquote><blockquote type="cite">      << Attr.getName() << 0 /*function*/;<br></blockquote><blockquote type="cite">    return;<br></blockquote><blockquote type="cite">  }<br></blockquote><br>Unless I'm mistaken, this breaks constructs like the following:<br>__attribute((malloc)) void *(*f)();<br><br>-Eli</span></blockquote></div><br><div>I implemented handling of this case, but I noticed that GCC actually rejects attribute 'malloc' being applied to function pointers ("warning: 'malloc' attribute ignored").  Should we do the same in Clang?  For function pointers, the malloc attribute really a property of the pointer type, not the declaration, but apparently GCC doesn't even reason about that.</div></body></html>