comparison src/share/vm/opto/gcm.cpp @ 839:bb18957ad21e

Merge
author ysr
date Fri, 10 Jul 2009 16:01:20 -0700
parents acba6af809c8
children c18cbe5936b8
comparison
equal deleted inserted replaced
838:0316eac49d5a 839:bb18957ad21e
1128 // Don't move CheckCastPP nodes away from their input, if the input 1128 // Don't move CheckCastPP nodes away from their input, if the input
1129 // is a rawptr (5071820). 1129 // is a rawptr (5071820).
1130 Node *def = self->in(1); 1130 Node *def = self->in(1);
1131 if (def != NULL && def->bottom_type()->base() == Type::RawPtr) { 1131 if (def != NULL && def->bottom_type()->base() == Type::RawPtr) {
1132 early->add_inst(self); 1132 early->add_inst(self);
1133 #ifdef ASSERT
1134 _raw_oops.push(def);
1135 #endif
1133 continue; 1136 continue;
1134 } 1137 }
1135 break; 1138 break;
1136 } 1139 }
1137 } 1140 }