aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-05-15 17:06:29 +0000
committerJohn McCall <rjmccall@apple.com>2010-05-15 17:06:29 +0000
commitc00c1f6638a8ca771df14133560873fc21f31234 (patch)
treefea5331935d0ab2d67ce6a628e90bd4960c23337
parent986f3490c58c19f8876dfe328a50801604b1cef5 (diff)
Modify this comment per Doug's suggestion: we don't need to mangle protocols.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103875 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/CodeGen/Mangle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/Mangle.cpp b/lib/CodeGen/Mangle.cpp
index 84453b3306..46a9f6ce82 100644
--- a/lib/CodeGen/Mangle.cpp
+++ b/lib/CodeGen/Mangle.cpp
@@ -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());
}