aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/ExprConstant.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-07-11 19:19:21 +0000
committerChris Lattner <sabre@nondot.org>2008-07-11 19:19:21 +0000
commitcf0f51d10f01065bd7bc3ffe77e18c30dcbdbea3 (patch)
tree19562a42d42f557d79c4cbbbf6c229c2086b6b04 /lib/AST/ExprConstant.cpp
parent150c2120ab4a44b4ac62b401ffece9049ff9b2c0 (diff)
rename "SInt" methods to "Int" in APValue.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53467 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/ExprConstant.cpp')
-rw-r--r--lib/AST/ExprConstant.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp
index 5826fab131..424d95e078 100644
--- a/lib/AST/ExprConstant.cpp
+++ b/lib/AST/ExprConstant.cpp
@@ -386,9 +386,9 @@ VisitSizeOfAlignOfTypeExpr(const SizeOfAlignOfTypeExpr *E) {
//===----------------------------------------------------------------------===//
bool Expr::tryEvaluate(APValue &Result, ASTContext &Ctx) const {
+ llvm::APSInt sInt(32);
#if USE_NEW_EVALUATOR
if (getType()->isIntegerType()) {
- llvm::APSInt sInt(32);
if (EvaluateInteger(this, sInt, Ctx)) {
Result = APValue(sInt);
return true;