Skip to content
Merged
Changes from all commits
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
2 changes: 2 additions & 0 deletions src/coreclr/jit/indirectcalltransformer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ class IndirectCallTransformer
{
remainderBlock = compiler->fgSplitBlockAfterStatement(currBlock, stmt);
remainderBlock->SetFlags(BBF_INTERNAL);
remainderBlock->RemoveFlags(BBF_DONT_REMOVE);

// We will be adding more blocks after currBlock, so remove edge to remainderBlock.
//
Expand Down Expand Up @@ -237,6 +238,7 @@ class IndirectCallTransformer
{
block->CopyFlags(flagsSource, BBF_SPLIT_GAINED);
}
block->RemoveFlags(BBF_DONT_REMOVE);
return block;
}

Expand Down
Loading