comparison src/share/vm/oops/constantPool.cpp @ 8883:b9a918201d47

Merge with hsx25
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sat, 06 Apr 2013 20:04:06 +0200
parents 5fc51c1ecdeb c3c64a973559
children 89e4d67fdd2a
comparison
equal deleted inserted replaced
8660:d47b52b0ff68 8883:b9a918201d47
1850 tag_at(index).print_on(st); 1850 tag_at(index).print_on(st);
1851 st->print(" : "); 1851 st->print(" : ");
1852 switch (tag_at(index).value()) { 1852 switch (tag_at(index).value()) {
1853 case JVM_CONSTANT_Class : 1853 case JVM_CONSTANT_Class :
1854 { Klass* k = klass_at(index, CATCH); 1854 { Klass* k = klass_at(index, CATCH);
1855 guarantee(k != NULL, "need klass");
1855 k->print_value_on(st); 1856 k->print_value_on(st);
1856 st->print(" {0x%lx}", (address)k); 1857 st->print(" {0x%lx}", (address)k);
1857 } 1858 }
1858 break; 1859 break;
1859 case JVM_CONSTANT_Fieldref : 1860 case JVM_CONSTANT_Fieldref :