]> granicus.if.org Git - clang/commitdiff
Modify this comment per Doug's suggestion: we don't need to mangle protocols.
authorJohn McCall <rjmccall@apple.com>
Sat, 15 May 2010 17:06:29 +0000 (17:06 +0000)
committerJohn McCall <rjmccall@apple.com>
Sat, 15 May 2010 17:06:29 +0000 (17:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103875 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Mangle.cpp

index 84453b330671a38fcb986f21ac1e0edf063ba04a..46a9f6ce82bd9ec5d7d472c66111a6d1d64da2eb 100644 (file)
@@ -1207,8 +1207,8 @@ void CXXNameMangler::mangleType(const ObjCInterfaceType *T) {
 }
 
 void CXXNameMangler::mangleType(const ObjCObjectType *T) {
-  // FIXME: do we allow overloading by different protocols?
-  // If so, we need to mangle them in here.
+  // We don't allow overloading by different protocol qualification,
+  // so mangling them isn't necessary.
   mangleType(T->getBaseType());
 }