comparison src/share/vm/opto/connode.cpp @ 14422:2b8e28fdf503

Merge
author kvn
date Tue, 05 Nov 2013 17:38:04 -0800
parents 7944aba7ba41
children de6a9e811145
comparison
equal deleted inserted replaced
14421:3068270ba476 14422:2b8e28fdf503
628 const Type *EncodePKlassNode::Value( PhaseTransform *phase ) const { 628 const Type *EncodePKlassNode::Value( PhaseTransform *phase ) const {
629 const Type *t = phase->type( in(1) ); 629 const Type *t = phase->type( in(1) );
630 if (t == Type::TOP) return Type::TOP; 630 if (t == Type::TOP) return Type::TOP;
631 assert (t != TypePtr::NULL_PTR, "null klass?"); 631 assert (t != TypePtr::NULL_PTR, "null klass?");
632 632
633 assert(UseCompressedKlassPointers && t->isa_klassptr(), "only klass ptr here"); 633 assert(UseCompressedClassPointers && t->isa_klassptr(), "only klass ptr here");
634 return t->make_narrowklass(); 634 return t->make_narrowklass();
635 } 635 }
636 636
637 637
638 //============================================================================= 638 //=============================================================================