Searched refs:LoopDeletionResult (Results 1 – 1 of 1) sorted by relevance
45 enum class LoopDeletionResult { enum51 static LoopDeletionResult merge(LoopDeletionResult A, LoopDeletionResult B) { in merge()52 if (A == LoopDeletionResult::Deleted || B == LoopDeletionResult::Deleted) in merge()53 return LoopDeletionResult::Deleted; in merge()54 if (A == LoopDeletionResult::Modified || B == LoopDeletionResult::Modified) in merge()55 return LoopDeletionResult::Modified; in merge()56 return LoopDeletionResult::Unmodified; in merge()398 static LoopDeletionResult405 return LoopDeletionResult::Unmodified; in breakBackedgeIfNotTaken()412 return LoopDeletionResult::Unmodified; in breakBackedgeIfNotTaken()[all …]