mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-03 19:02:35 +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)
|
for (unsigned i = 0; i != NumIdx; ++i)
|
||||||
if (!NewIdxs[i]) NewIdxs[i] = Idxs[i];
|
if (!NewIdxs[i]) NewIdxs[i] = Idxs[i];
|
||||||
return inBounds ?
|
return inBounds ?
|
||||||
ConstantExpr::getGetElementPtr(const_cast<Constant*>(C),
|
|
||||||
NewIdxs.data(), NewIdxs.size()) :
|
|
||||||
ConstantExpr::getInBoundsGetElementPtr(const_cast<Constant*>(C),
|
ConstantExpr::getInBoundsGetElementPtr(const_cast<Constant*>(C),
|
||||||
|
NewIdxs.data(), NewIdxs.size()) :
|
||||||
|
ConstantExpr::getGetElementPtr(const_cast<Constant*>(C),
|
||||||
NewIdxs.data(), NewIdxs.size());
|
NewIdxs.data(), NewIdxs.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user