comparison src/share/vm/oops/constantPoolOop.cpp @ 3960:f08d439fab8c

7089790: integrate bsd-port changes Reviewed-by: kvn, twisti, jrose Contributed-by: Kurt Miller <kurt@intricatesoftware.com>, Greg Lewis <glewis@eyesbeyond.com>, Jung-uk Kim <jkim@freebsd.org>, Christos Zoulas <christos@zoulas.com>, Landon Fuller <landonf@plausible.coop>, The FreeBSD Foundation <board@freebsdfoundation.org>, Michael Franz <mvfranz@gmail.com>, Roger Hoover <rhoover@apple.com>, Alexander Strange <astrange@apple.com>
author never
date Sun, 25 Sep 2011 16:03:29 -0700
parents ddd894528dbc
children a428df0139f3 f457154eee8b
comparison
equal deleted inserted replaced
3959:eda6988c0d81 3960:f08d439fab8c
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: {