git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@337002
91177308-0d34-0410-b5e6-
96231b3b80d8
// Now insert the cmovs to implement the checks.
auto InsertPt = CheckingMBB.begin();
- assert(
- InsertPt == CheckingMBB.end() ||
- !InsertPt->isPHI() &&
- "Should never have a PHI in the initial checking block as it "
- "always has a single predecessor!");
+ assert((InsertPt == CheckingMBB.end() || !InsertPt->isPHI()) &&
+ "Should never have a PHI in the initial checking block as it "
+ "always has a single predecessor!");
// We will wire each cmov to each other, but need to start with the
// incoming pred state.