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 98400a4..d6a4094 100644
--- a/lib/AST/ExprConstant.cpp
+++ b/lib/AST/ExprConstant.cpp
@@ -110,9 +110,11 @@
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();
}