From: Steve Naroff Date: Sun, 22 Feb 2009 02:19:47 +0000 (+0000) Subject: Remove debugging statement. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b1527b7b9a3c5687e336f08f1e18263af0e107d;p=clang Remove debugging statement. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65257 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExprObjC.cpp b/lib/Sema/SemaExprObjC.cpp index afa025552a..e5fefd3e3a 100644 --- a/lib/Sema/SemaExprObjC.cpp +++ b/lib/Sema/SemaExprObjC.cpp @@ -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(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)))