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
add check that we don't see them.
  • Loading branch information
Sergey committed May 26, 2021
commit 83ca346c07064a7d3ab92de1c93b2fb80d03163c
5 changes: 5 additions & 0 deletions src/coreclr/jit/lower.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6046,6 +6046,11 @@ void Lowering::CheckNode(Compiler* compiler, GenTree* node)
break;
}

case GT_PHI:
case GT_PHI_ARG:
assert(!"Should not see phi nodes after rationalize");
break;

default:
break;
}
Expand Down