diff options
author | John McCall <rjmccall@apple.com> | 2009-11-12 02:10:34 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-11-12 02:10:34 +0000 |
commit | a29e6b87bd53c883cb8ee62178879136a32e270e (patch) | |
tree | 3175c5942fdc7a95e15d5d52acddb4e29c1438bc /lib/Sema/SemaExpr.cpp | |
parent | 8e1bcb0ad31bf1ba3bf70a3e595a10c5c3b00c50 (diff) |
Note to self: don't leave debugging statements in the code for four hours.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaExpr.cpp')
-rw-r--r-- | lib/Sema/SemaExpr.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 9d6af7a1b8..1288f56675 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -6522,8 +6522,6 @@ void Sema::DiagnoseAssignmentAsCondition(Expr *E) { = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { Selector Sel = ME->getSelector(); - llvm::errs() << "selector is '" << Sel.getIdentifierInfoForSlot(0)->getName() << "'\n"; - // self = [<foo> init...] if (isSelfExpr(Op->getLHS()) && Sel.getIdentifierInfoForSlot(0)->getName().startswith("init")) |