git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293453
91177308-0d34-0410-b5e6-
96231b3b80d8
assert(AL->size() == ActualAccesses.size() &&
"We don't have the same number of accesses in the block as on the "
"access list");
- assert(DL ||
- ActualDefs.size() == 0 &&
- "Either we should have a defs list, or we should have no defs");
+ assert((DL || ActualDefs.size() == 0) &&
+ "Either we should have a defs list, or we should have no defs");
assert((!DL || DL->size() == ActualDefs.size()) &&
"We don't have the same number of defs in the block as on the "
"def list");