1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix an accidental inversion of the inbounds flag.

llvm-svn: 81862
This commit is contained in:
Dan Gohman 2009-09-15 16:00:30 +00:00
parent 18a3644dde
commit ccdb00720e

View File

@ -1873,10 +1873,10 @@ 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());
NewIdxs.data(), NewIdxs.size()) :
ConstantExpr::getGetElementPtr(const_cast<Constant*>(C),
NewIdxs.data(), NewIdxs.size());
}
// If all indices are known integers and normalized, we can do a simple