[cfe-commits] r69305 - in /cfe/trunk: lib/CodeGen/CGObjCMac.cpp test/CodeGenObjC/metadata_symbols.m

Daniel Dunbar daniel at zuster.org
Thu Apr 16 14:33:47 PDT 2009


On Thu, Apr 16, 2009 at 11:34 AM, Fariborz Jahanian <fjahanian at apple.com>wrote:

> @@ -3043,6 +3043,12 @@
>   NameOut += '[';
>   assert (CD && "Missing container decl in GetNameForMethod");
>   NameOut += CD->getNameAsString();
> +  if (const ObjCCategoryImplDecl *CID =
> +      dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) {
> +    NameOut += '(';
> +    NameOut += CID->getNameAsString();
> +    NameOut+= ')';
> +  }
>   // FIXME. For a method in a category, (CAT_NAME) is inserted here.
>   // Right now! there is not enough info. to do this.


This FIXME is done now, right?

 - Daniel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20090416/4cf216d0/attachment.html>


More information about the cfe-commits mailing list