Skip to content

Commit

Permalink
Rebase and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
SingleAccretion committed Jan 21, 2022
1 parent 86d4b95 commit d3263b6
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/coreclr/jit/valuenum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9373,17 +9373,6 @@ void Compiler::fgValueNumberTree(GenTree* tree)
}
break;

// DYN_BLK is always an L-value.
case GT_DYN_BLK:
assert(!tree->CanCSE());
tree->gtVNPair = vnStore->VNPForVoid();
tree->gtVNPair =
vnStore->VNPWithExc(tree->gtVNPair, vnStore->VNPExceptionSet(tree->AsDynBlk()->Addr()->gtVNPair));
tree->gtVNPair =
vnStore->VNPWithExc(tree->gtVNPair,
vnStore->VNPExceptionSet(tree->AsDynBlk()->gtDynamicSize->gtVNPair));
break;

// FIELD_LIST is an R-value that we currently don't model.
case GT_FIELD_LIST:
tree->gtVNPair.SetBoth(vnStore->VNForExpr(compCurBB, tree->TypeGet()));
Expand Down

0 comments on commit d3263b6

Please sign in to comment.