From: Chris Lattner Date: Mon, 6 Oct 2008 07:20:11 +0000 (+0000) Subject: ExprConstant should not abort when it sees a pointer constant that isn't. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cecee8da98e86cf7118d15a0f198b98956089a7;p=clang ExprConstant should not abort when it sees a pointer constant that isn't. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57162 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp index af30ceb96c..01dad74fa1 100644 --- a/lib/AST/ExprConstant.cpp +++ b/lib/AST/ExprConstant.cpp @@ -79,9 +79,6 @@ public: PointerExprEvaluator(EvalInfo &info) : Info(info) {} APValue VisitStmt(Stmt *S) { - // FIXME: Remove this when we support more expressions. - printf("Unhandled pointer statement\n"); - S->dump(); return APValue(); }