diff options
author | John McCall <rjmccall@apple.com> | 2010-05-15 17:06:29 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-05-15 17:06:29 +0000 |
commit | b0efad148c12994ae139da0269ee5653bf736c63 (patch) | |
tree | c875a932a11867dd36fe1e9e6ae3e9bb8881c70a /clang/lib/CodeGen/Mangle.cpp | |
parent | 6459bbe14a43313c92cbd6d5a6f6eb58b8775c39 (diff) | |
download | bcm5719-llvm-b0efad148c12994ae139da0269ee5653bf736c63.tar.gz bcm5719-llvm-b0efad148c12994ae139da0269ee5653bf736c63.zip |
Modify this comment per Doug's suggestion: we don't need to mangle protocols.
llvm-svn: 103875
Diffstat (limited to 'clang/lib/CodeGen/Mangle.cpp')
-rw-r--r-- | clang/lib/CodeGen/Mangle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/Mangle.cpp b/clang/lib/CodeGen/Mangle.cpp index 84453b33067..46a9f6ce82b 100644 --- a/clang/lib/CodeGen/Mangle.cpp +++ b/clang/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()); } |