@@ -4752,29 +4752,6 @@ Node *MergeMemNode::Ideal(PhaseGVN *phase, bool can_reshape) {
4752
4752
// the base memory might contribute new slices beyond my req()
4753
4753
if (old_mbase) grow_to_match (old_mbase);
4754
4754
4755
- // Look carefully at the base node if it is a phi.
4756
- PhiNode* phi_base;
4757
- if (new_base != NULL && new_base->is_Phi ())
4758
- phi_base = new_base->as_Phi ();
4759
- else
4760
- phi_base = NULL ;
4761
-
4762
- Node* phi_reg = NULL ;
4763
- uint phi_len = (uint )-1 ;
4764
- if (phi_base != NULL ) {
4765
- phi_reg = phi_base->region ();
4766
- phi_len = phi_base->req ();
4767
- // see if the phi is unfinished
4768
- for (uint i = 1 ; i < phi_len; i++) {
4769
- if (phi_base->in (i) == NULL ) {
4770
- // incomplete phi; do not look at it yet!
4771
- phi_reg = NULL ;
4772
- phi_len = (uint )-1 ;
4773
- break ;
4774
- }
4775
- }
4776
- }
4777
-
4778
4755
// Note: We do not call verify_sparse on entry, because inputs
4779
4756
// can normalize to the base_memory via subsume_node or similar
4780
4757
// mechanisms. This method repairs that damage.
@@ -4975,7 +4952,6 @@ Node* MergeMemNode::memory_at(uint alias_idx) const {
4975
4952
4976
4953
// Otherwise, it is a narrow slice.
4977
4954
Node* n = alias_idx < req () ? in (alias_idx) : empty_memory ();
4978
- Compile *C = Compile::current ();
4979
4955
if (is_empty_memory (n)) {
4980
4956
// the array is sparse; empty slots are the "top" node
4981
4957
n = base_memory ();
0 commit comments