comparison src/share/vm/graal/graalEnv.cpp @ 4603:a1238d5c6991

Small comment fix to test native code building guard in the gate.
author Doug Simon <doug.simon@oracle.com>
date Thu, 16 Feb 2012 23:51:37 +0100
parents 79c91d220d73
children 2f2c6347fce4
comparison
equal deleted inserted replaced
4602:ebd98fc68b67 4603:a1238d5c6991
244 // in the accessor klass. 244 // in the accessor klass.
245 void GraalEnv::get_field_by_index_impl(instanceKlassHandle& klass, fieldDescriptor& field_desc, 245 void GraalEnv::get_field_by_index_impl(instanceKlassHandle& klass, fieldDescriptor& field_desc,
246 int index) { 246 int index) {
247 EXCEPTION_CONTEXT; 247 EXCEPTION_CONTEXT;
248 248
249 assert(klass->is_linked(), "must be linked before using its constan-pool"); 249 assert(klass->is_linked(), "must be linked before using its constant-pool");
250 250
251 constantPoolHandle cpool(thread, klass->constants()); 251 constantPoolHandle cpool(thread, klass->constants());
252 252
253 // Get the field's name, signature, and type. 253 // Get the field's name, signature, and type.
254 Symbol* name = cpool->name_ref_at(index); 254 Symbol* name = cpool->name_ref_at(index);