mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-24 21:05:23 +00:00
Fix an accidental inversion of the inbounds flag.
llvm-svn: 81862
This commit is contained in:
parent
18a3644dde
commit
ccdb00720e
@ -1873,9 +1873,9 @@ Constant *llvm::ConstantFoldGetElementPtr(LLVMContext &Context,
|
||||
for (unsigned i = 0; i != NumIdx; ++i)
|
||||
if (!NewIdxs[i]) NewIdxs[i] = Idxs[i];
|
||||
return inBounds ?
|
||||
ConstantExpr::getGetElementPtr(const_cast<Constant*>(C),
|
||||
NewIdxs.data(), NewIdxs.size()) :
|
||||
ConstantExpr::getInBoundsGetElementPtr(const_cast<Constant*>(C),
|
||||
NewIdxs.data(), NewIdxs.size()) :
|
||||
ConstantExpr::getGetElementPtr(const_cast<Constant*>(C),
|
||||
NewIdxs.data(), NewIdxs.size());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user