]> granicus.if.org Git - clang/commitdiff
Remove debugging statement.
authorSteve Naroff <snaroff@apple.com>
Sun, 22 Feb 2009 02:19:47 +0000 (02:19 +0000)
committerSteve Naroff <snaroff@apple.com>
Sun, 22 Feb 2009 02:19:47 +0000 (02:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65257 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaExprObjC.cpp

index afa025552adcc21ad76c5125e2aa6ad057b5adbd..e5fefd3e3a638cf9b5d4b59b631534003644681e 100644 (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)))