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,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());
}