Skip to content
Closed
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
Update runtimelookup.cpp
  • Loading branch information
EgorBo authored Mar 15, 2023
commit 05293dc3903fe7ab46594d35b98f9e70b3ef1422
8 changes: 4 additions & 4 deletions src/coreclr/jit/runtimelookup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ PhaseStatus Compiler::fgExpandRuntimeLookups()
// ...
//
// nullcheckBb(BBJ_COND): [weight: 1.0]
// if (*fastPathValue == null)
// goto fallbackBb;
// if (*fastPathValue != null)
// goto fastPathBb;
//
// fallbackBb(BBJ_ALWAYS): [weight: 0.2]
// rtLookupLcl = HelperCall();
Expand Down Expand Up @@ -284,8 +284,8 @@ PhaseStatus Compiler::fgExpandRuntimeLookups()
// ...
//
// nullcheckBb(BBJ_COND): [weight: 0.8]
// if (*fastPathValue == null)
// goto fallbackBb;
// if (*fastPathValue != null)
// goto fastPathBb;
//
// fallbackBb(BBJ_ALWAYS): [weight: 0.36]
// rtLookupLcl = HelperCall();
Expand Down