summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaInit.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2018-11-21 20:44:18 +0000
committerBill Wendling <isanbard@gmail.com>2018-11-21 20:44:18 +0000
commit4e64d31bc5f3acbb9dd104dd4ae7ef492d4fe031 (patch)
treedd55b3cf11351ddce77e676435622743879ad499 /lib/Sema/SemaInit.cpp
parentcb1a557450468b15cb27dffafcaeba1a0a715e0d (diff)
downloadclang-4e64d31bc5f3acbb9dd104dd4ae7ef492d4fe031.tar.gz
Re-Reinstate 347294 with a fix for the failures.
Don't try to emit a scalar expression for a non-scalar argument to __builtin_constant_p(). Third time's a charm! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@347417 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInit.cpp')
-rw-r--r--lib/Sema/SemaInit.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp
index 3184be8038..1294606008 100644
--- a/lib/Sema/SemaInit.cpp
+++ b/lib/Sema/SemaInit.cpp
@@ -8050,8 +8050,9 @@ ExprResult InitializationSequence::Perform(Sema &S,
break;
}
- llvm::APSInt Result;
- Init->EvaluateAsInt(Result, S.Context);
+ Expr::EvalResult EVResult;
+ Init->EvaluateAsInt(EVResult, S.Context);
+ llvm::APSInt Result = EVResult.Val.getInt();
const uint64_t SamplerValue = Result.getLimitedValue();
// 32-bit value of sampler's initializer is interpreted as
// bit-field with the following structure: