diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-26 23:49:05 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-26 23:49:05 +0000 |
commit | 528473335419f072f6eff25a4af07925c1692121 (patch) | |
tree | 0468101f118da9833c91d27981f037924ecbe809 /lib/CodeGen/CGObjCMac.cpp | |
parent | 2e2558ec5f5f70ec7f7a8a7e31d0c6be9e1f567e (diff) |
Added a FIXME.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63071 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCMac.cpp')
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 += ']'; |