mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-30 08:24:12 +00:00
Avoid gratuitous inefficiency in ifndef NDEBUG code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111137 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d3f171d66f
commit
c4f77983d8
@ -1667,9 +1667,9 @@ const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops,
|
||||
assert(!Ops.empty() && "Cannot get empty mul!");
|
||||
if (Ops.size() == 1) return Ops[0];
|
||||
#ifndef NDEBUG
|
||||
const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
|
||||
for (unsigned i = 1, e = Ops.size(); i != e; ++i)
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) ==
|
||||
getEffectiveSCEVType(Ops[0]->getType()) &&
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
|
||||
"SCEVMulExpr operand types don't match!");
|
||||
#endif
|
||||
|
||||
@ -1989,9 +1989,9 @@ ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
|
||||
bool HasNUW, bool HasNSW) {
|
||||
if (Operands.size() == 1) return Operands[0];
|
||||
#ifndef NDEBUG
|
||||
const Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
|
||||
for (unsigned i = 1, e = Operands.size(); i != e; ++i)
|
||||
assert(getEffectiveSCEVType(Operands[i]->getType()) ==
|
||||
getEffectiveSCEVType(Operands[0]->getType()) &&
|
||||
assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
|
||||
"SCEVAddRecExpr operand types don't match!");
|
||||
#endif
|
||||
|
||||
@ -2089,9 +2089,9 @@ ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
|
||||
assert(!Ops.empty() && "Cannot get empty smax!");
|
||||
if (Ops.size() == 1) return Ops[0];
|
||||
#ifndef NDEBUG
|
||||
const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
|
||||
for (unsigned i = 1, e = Ops.size(); i != e; ++i)
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) ==
|
||||
getEffectiveSCEVType(Ops[0]->getType()) &&
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
|
||||
"SCEVSMaxExpr operand types don't match!");
|
||||
#endif
|
||||
|
||||
@ -2194,9 +2194,9 @@ ScalarEvolution::getUMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
|
||||
assert(!Ops.empty() && "Cannot get empty umax!");
|
||||
if (Ops.size() == 1) return Ops[0];
|
||||
#ifndef NDEBUG
|
||||
const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
|
||||
for (unsigned i = 1, e = Ops.size(); i != e; ++i)
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) ==
|
||||
getEffectiveSCEVType(Ops[0]->getType()) &&
|
||||
assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
|
||||
"SCEVUMaxExpr operand types don't match!");
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user