Remove debugging statement.

llvm-svn: 65257
This commit is contained in:
Steve Naroff 2009-02-22 02:19:47 +00:00
parent b8482c5d5d
commit 10cbe66f17
1 changed files with 0 additions and 1 deletions

View File

@ -392,7 +392,6 @@ Sema::ExprResult Sema::ActOnInstanceMessage(ExprTy *receiver, Selector Sel,
// 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)))