summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2013-01-29 15:09:40 +0000
committerJoey Gouly <joey.gouly@arm.com>2013-01-29 15:09:40 +0000
commit0942e0b5e17f05858fa6fbca37496e4f7e714668 (patch)
tree3dc1e6ccd6c174342e75e2501009714e515f038a /clang/lib
parentcf3300016eb747755a4cf31638c8d4b0ac1b1ae6 (diff)
downloadbcm5719-llvm-0942e0b5e17f05858fa6fbca37496e4f7e714668.tar.gz
bcm5719-llvm-0942e0b5e17f05858fa6fbca37496e4f7e714668.zip
Fix a crash in OpenCL code by using the proper (RHS) bit-width.
llvm-svn: 173802
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/AST/ExprConstant.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/ExprConstant.cpp b/clang/lib/AST/ExprConstant.cpp
index 4ea6399a48e..ae86150ee2a 100644
--- a/clang/lib/AST/ExprConstant.cpp
+++ b/clang/lib/AST/ExprConstant.cpp
@@ -4723,7 +4723,7 @@ bool DataRecursiveIntBinOpEvaluator::
case BO_Shl: {
if (Info.getLangOpts().OpenCL)
// OpenCL 6.3j: shift values are effectively % word size of LHS.
- RHS &= APSInt(llvm::APInt(LHS.getBitWidth(),
+ RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
static_cast<uint64_t>(LHS.getBitWidth() - 1)),
RHS.isUnsigned());
else if (RHS.isSigned() && RHS.isNegative()) {
@@ -4755,7 +4755,7 @@ bool DataRecursiveIntBinOpEvaluator::
case BO_Shr: {
if (Info.getLangOpts().OpenCL)
// OpenCL 6.3j: shift values are effectively % word size of LHS.
- RHS &= APSInt(llvm::APInt(LHS.getBitWidth(),
+ RHS &= APSInt(llvm::APInt(RHS.getBitWidth(),
static_cast<uint64_t>(LHS.getBitWidth() - 1)),
RHS.isUnsigned());
else if (RHS.isSigned() && RHS.isNegative()) {
OpenPOWER on IntegriCloud