comparison src/share/vm/oops/constantPoolOop.cpp @ 4137:04b9a2566eec

Merge with hsx23/hotspot.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 17 Dec 2011 21:40:27 +0100
parents f08d439fab8c
children a428df0139f3 f457154eee8b
comparison
equal deleted inserted replaced
3737:9dc19b7d89a3 4137:04b9a2566eec
1353 ent_size = 4; 1353 ent_size = 4;
1354 break; 1354 break;
1355 } 1355 }
1356 case JVM_CONSTANT_Long: { 1356 case JVM_CONSTANT_Long: {
1357 u8 val = Bytes::get_Java_u8(bytes); 1357 u8 val = Bytes::get_Java_u8(bytes);
1358 printf("long "INT64_FORMAT, *(jlong *) &val); 1358 printf("long "INT64_FORMAT, (int64_t) *(jlong *) &val);
1359 ent_size = 8; 1359 ent_size = 8;
1360 idx++; // Long takes two cpool slots 1360 idx++; // Long takes two cpool slots
1361 break; 1361 break;
1362 } 1362 }
1363 case JVM_CONSTANT_Double: { 1363 case JVM_CONSTANT_Double: {