Searched refs:NewLowerBound (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp282 // NewLowerBound here should never be the integer minimal value.
286 ConstantInt *NewLowerBound = Pivot.Low; local
288 // Because NewLowerBound is never the smallest representable integer
290 ConstantInt *NewUpperBound = ConstantInt::get(NewLowerBound->getContext(),
291 NewLowerBound->getValue() - 1);
294 // Check if the gap between LHS's highest and NewLowerBound is unreachable.
296 int64_t GapHigh = NewLowerBound->getSExtValue() - 1;
304 << "RHS Bounds ==> [" << NewLowerBound->getSExtValue()
318 BasicBlock *RBranch = switchConvert(RHS.begin(), RHS.end(), NewLowerBound,

Completed in 228 milliseconds