Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix bbNum
  • Loading branch information
kunalspathak committed Jul 16, 2021
commit 6d5ceddd22432a3fe8083653280cd260aac46e4a
2 changes: 1 addition & 1 deletion src/coreclr/jit/redundantbranchopts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ bool Compiler::optJumpThread(BasicBlock* const block, BasicBlock* const domBlock
// If the block is the first block of try-region, then skip jump threading
if (bbIsTryBeg(block))
{
JITDUMP(FMT_BB " is first block of try-region; no threading\n");
JITDUMP(FMT_BB " is first block of try-region; no threading\n", block->bbNum);
return false;
}

Expand Down