Skip to content

Commit

Permalink
JIT: Remove implicit fallthrough assert in bool optimizer (#106492)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanasifkhalid authored Aug 16, 2024
1 parent 652a150 commit fd9110e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/coreclr/jit/optimizebools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,6 @@ void OptBoolsDsc::optOptimizeBoolsUpdateTrees()
assert(m_b2->KindIs(BBJ_COND));
assert(m_b1->TrueTargetIs(m_b2->GetTrueTarget()));
assert(m_b1->FalseTargetIs(m_b2));
assert(!m_b2->IsLast());

// We now reach B2's false target via B1 false.
//
Expand Down

0 comments on commit fd9110e

Please sign in to comment.