We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ca982b commit 919e683Copy full SHA for 919e683
src/coreclr/src/jit/optimizer.cpp
@@ -2317,8 +2317,8 @@ class LoopSearch
2317
}
2318
2319
// Make sure we don't leave around a goto-next unless it's marked KEEP_BBJ_ALWAYS.
2320
- assert((block->bbJumpKind != BBJ_COND) || (block->bbJumpKind != BBJ_ALWAYS) || (block->bbJumpDest != newNext) ||
2321
- ((block->bbFlags & BBF_KEEP_BBJ_ALWAYS) != 0));
+ assert(((block->bbJumpKind != BBJ_COND) && (block->bbJumpKind != BBJ_ALWAYS)) ||
+ (block->bbJumpDest != newNext) || ((block->bbFlags & BBF_KEEP_BBJ_ALWAYS) != 0));
2322
return newBlock;
2323
2324
0 commit comments