[cfe-commits] r103875 - /cfe/trunk/lib/CodeGen/Mangle.cpp

John McCall rjmccall at apple.com
Sat May 15 10:06:29 PDT 2010


Author: rjmccall
Date: Sat May 15 12:06:29 2010
New Revision: 103875

URL: http://llvm.org/viewvc/llvm-project?rev=103875&view=rev
Log:
Modify this comment per Doug's suggestion:  we don't need to mangle protocols.


Modified:
    cfe/trunk/lib/CodeGen/Mangle.cpp

Modified: cfe/trunk/lib/CodeGen/Mangle.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/Mangle.cpp?rev=103875&r1=103874&r2=103875&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/Mangle.cpp (original)
+++ cfe/trunk/lib/CodeGen/Mangle.cpp Sat May 15 12:06:29 2010
@@ -1207,8 +1207,8 @@
 }
 
 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());
 }
 





More information about the cfe-commits mailing list