[cfe-commits] r65257 - /cfe/trunk/lib/Sema/SemaExprObjC.cpp
Steve Naroff
snaroff at apple.com
Sat Feb 21 18:19:47 PST 2009
Author: snaroff
Date: Sat Feb 21 20:19:47 2009
New Revision: 65257
URL: http://llvm.org/viewvc/llvm-project?rev=65257&view=rev
Log:
Remove debugging statement.
Modified:
cfe/trunk/lib/Sema/SemaExprObjC.cpp
Modified: cfe/trunk/lib/Sema/SemaExprObjC.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaExprObjC.cpp?rev=65257&r1=65256&r2=65257&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaExprObjC.cpp (original)
+++ cfe/trunk/lib/Sema/SemaExprObjC.cpp Sat Feb 21 20:19:47 2009
@@ -392,7 +392,6 @@
// long as one of the protocols implements the selector (if not, warn).
if (ObjCQualifiedIdType *QIT = dyn_cast<ObjCQualifiedIdType>(ReceiverCType)) {
// Search protocols for instance methods.
- ReceiverCType.dump();
for (unsigned i = 0; i < QIT->getNumProtocols(); i++) {
ObjCProtocolDecl *PDecl = QIT->getProtocols(i);
if (PDecl && (Method = PDecl->lookupInstanceMethod(Sel)))
More information about the cfe-commits
mailing list