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
5 changes: 4 additions & 1 deletion src/coreclr/jit/fgprofile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2611,7 +2611,10 @@ PhaseStatus Compiler::fgIncorporateProfileData()
// We expect not to have both block and edge counts. We may have other
// forms of profile data even if we do not have any counts.
//
assert(!haveBlockCounts || !haveEdgeCounts);
// As of 4/6/2023 the following invariant check turns out to no longer hold.
// Tracking issue: https://github.com/dotnet/runtime/issues/84446
//
// assert(!haveBlockCounts || !haveEdgeCounts);

bool dataIsGood = false;

Expand Down