aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaDecl.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/Sema/SemaDecl.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/Sema/SemaDecl.cpp')
-rw-r--r--lib/Sema/SemaDecl.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp
index 183d9a9a24..4836be4b8e 100644
--- a/lib/Sema/SemaDecl.cpp
+++ b/lib/Sema/SemaDecl.cpp
@@ -1814,12 +1814,11 @@ QualType Sema::TryFixInvalidVariablyModifiedType(QualType T) {
if (const VariableArrayType* VLATy = dyn_cast<VariableArrayType>(T)) {
APValue Result;
if (VLATy->getSizeExpr() &&
- VLATy->getSizeExpr()->tryEvaluate(Result, Context) && Result.isSInt() &&
- Result.getSInt() > llvm::APSInt(Result.getSInt().getBitWidth(),
- Result.getSInt().isUnsigned())) {
- return Context.getConstantArrayType(VLATy->getElementType(),
- Result.getSInt(),
- ArrayType::Normal, 0);
+ VLATy->getSizeExpr()->tryEvaluate(Result, Context) && Result.isInt()) {
+ llvm::APSInt &Res = Result.getInt();
+ if (Res > llvm::APSInt(Res.getBitWidth(), Res.isUnsigned()))
+ return Context.getConstantArrayType(VLATy->getElementType(),
+ Res, ArrayType::Normal, 0);
}
}
return QualType();