diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-11-12 21:52:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-11-12 21:52:46 +0000 |
commit | 8a7b7c6d4c96ace3667204bed4a48bad91b7c0f0 (patch) | |
tree | 4dc16c72ee8743fd35a95f7bbfaca615ac9d9cc9 /lib | |
parent | b995d799e146a7d43a3e8311adb54653415434a1 (diff) |
Disable some debug prints.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/AST/ExprConstant.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } |