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

/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp392 int64_t LaterIntStart = LaterOff, LaterIntEnd = LaterOff + Later.Size; local
394 // Find any intervals ending at, or after, LaterIntStart which start
396 auto ILI = IM.lower_bound(LaterIntStart);
399 // in [LaterIntStart, LaterIntEnd]. Merge them by erasing the existing
401 LaterIntStart = std::min(LaterIntStart, ILI->second);
412 assert(ILI->second > LaterIntStart && "Unexpected interval");
418 IM[LaterIntEnd] = LaterIntStart;

Completed in 135 milliseconds