[cfe-commits] r44843 - /cfe/trunk/Sema/SemaExpr.cpp
Steve Naroff
snaroff at apple.com
Mon Dec 10 19:38:04 PST 2007
Author: snaroff
Date: Mon Dec 10 21:38:03 2007
New Revision: 44843
URL: http://llvm.org/viewvc/llvm-project?rev=44843&view=rev
Log:
Avoid the first person in a recently added comment.
Modified:
cfe/trunk/Sema/SemaExpr.cpp
Modified: cfe/trunk/Sema/SemaExpr.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Sema/SemaExpr.cpp?rev=44843&r1=44842&r2=44843&view=diff
==============================================================================
--- cfe/trunk/Sema/SemaExpr.cpp (original)
+++ cfe/trunk/Sema/SemaExpr.cpp Mon Dec 10 21:38:03 2007
@@ -2303,8 +2303,8 @@
if (ObjcImplementationDecl *ImpDecl =
ObjcImplementations[ClassDecl->getIdentifier()])
Method = ImpDecl->lookupInstanceMethod(Sel);
- // If we still haven't found a method, look in the global pool.
- // I am not fond of this behavior, however we conform to what gcc does.
+ // If we still haven't found a method, look in the global pool. This
+ // behavior isn't very desirable, however we need it for GCC compatibility.
if (!Method)
Method = InstanceMethodPool[Sel].Method;
}
More information about the cfe-commits
mailing list