From 6fc2204dde1bb643a07f6f2ac324c0a5a9036275 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Fri, 25 Mar 2011 11:22:47 +0000 Subject: Fix some clang warnings. llvm-svn: 128272 --- clang/lib/AST/ExprConstant.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'clang/lib/AST/ExprConstant.cpp') diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp index 9ce98b7e574..2c0bcc2adb9 100644 --- a/clang/lib/AST/ExprConstant.cpp +++ b/clang/lib/AST/ExprConstant.cpp @@ -770,7 +770,7 @@ APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) { return APValue(); Result = APValue(F); } else { - return false; + return APValue(); } // Splat and create vector APValue. @@ -782,7 +782,7 @@ APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) { return Visit(const_cast(SE)); if (!SETy->isIntegerType()) - return false; + return APValue(); APSInt Init; if (!EvaluateInteger(SE, Init, Info)) @@ -808,7 +808,7 @@ APValue VectorExprEvaluator::VisitCastExpr(const CastExpr* E) { case CK_NoOp: return Visit(const_cast(SE)); default: - return false; + return APValue(); } } -- cgit v1.2.3