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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp484 int64_t LaterIntStart = LaterOff, LaterIntEnd = LaterOff + LaterSize; local
487 // before LaterIntEnd.
489 if (ILI != IM.end() && ILI->second <= LaterIntEnd) {
491 // in [LaterIntStart, LaterIntEnd]. Merge them by erasing the existing
494 LaterIntEnd = std::max(LaterIntEnd, ILI->first);
503 while (ILI != IM.end() && ILI->second <= LaterIntEnd) {
505 LaterIntEnd = std::max(LaterIntEnd, ILI->first);
510 IM[LaterIntEnd]
[all...]

Completed in 48 milliseconds