Home
last modified time | relevance | path

Searched refs:LoopDeletionResult (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp45 enum class LoopDeletionResult { enum
51 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 LoopDeletionResult
405 return LoopDeletionResult::Unmodified; in breakBackedgeIfNotTaken()
412 return LoopDeletionResult::Unmodified; in breakBackedgeIfNotTaken()
[all …]