From: Fariborz Jahanian Date: Mon, 26 Jan 2009 23:49:05 +0000 (+0000) Subject: Added a FIXME. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=528473335419f072f6eff25a4af07925c1692121;p=clang Added a FIXME. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63071 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index f1460bd019..9365535079 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -2324,6 +2324,8 @@ void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D, NameOut += '['; assert (CD && "Missing container decl in GetNameForMethod"); NameOut += CD->getNameAsString(); + // FIXME. For a method in a category, (CAT_NAME) is inserted here. + // Right now! there is not enough info. to do this. NameOut += ' '; NameOut += D->getSelector().getAsString(); NameOut += ']';