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();
   }
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to