From: Daniel Dunbar Date: Wed, 12 Nov 2008 21:52:46 +0000 (+0000) Subject: Disable some debug prints. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a7b7c6d4c96ace3667204bed4a48bad91b7c0f0;p=clang Disable some debug prints. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59174 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp index 98400a450d..d6a4094520 100644 --- a/lib/AST/ExprConstant.cpp +++ b/lib/AST/ExprConstant.cpp @@ -110,9 +110,11 @@ public: LValueExprEvaluator(EvalInfo &info) : Info(info) {} APValue VisitStmt(Stmt *S) { +#if 0 // FIXME: Remove this when we support more expressions. printf("Unhandled pointer statement\n"); S->dump(); +#endif return APValue(); }