git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@313780
91177308-0d34-0410-b5e6-
96231b3b80d8
/// the rest of the pass management infrastructure.
void markLoopAsDeleted(Loop &L) {
LAM.clear(L);
- assert(&L == CurrentL ||
- CurrentL->contains(&L) && "Cannot delete a loop outside of the "
- "subloop tree currently being processed.");
+ assert((&L == CurrentL || CurrentL->contains(&L)) &&
+ "Cannot delete a loop outside of the "
+ "subloop tree currently being processed.");
if (&L == CurrentL)
SkipCurrentLoop = true;
}