[cfe-commits] r59174 - /cfe/trunk/lib/AST/ExprConstant.cpp

Daniel Dunbar daniel at zuster.org
Wed Nov 12 13:52:47 PST 2008


Author: ddunbar
Date: Wed Nov 12 15:52:46 2008
New Revision: 59174

URL: http://llvm.org/viewvc/llvm-project?rev=59174&view=rev
Log:
Disable some debug prints.

Modified:
    cfe/trunk/lib/AST/ExprConstant.cpp

Modified: cfe/trunk/lib/AST/ExprConstant.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ExprConstant.cpp?rev=59174&r1=59173&r2=59174&view=diff

==============================================================================
--- cfe/trunk/lib/AST/ExprConstant.cpp (original)
+++ cfe/trunk/lib/AST/ExprConstant.cpp Wed Nov 12 15:52:46 2008
@@ -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();
   }
 





More information about the cfe-commits mailing list