comparison src/share/vm/graal/graalCompilerToVM.cpp @ 19450:67337afcb69e

Another fix in the cpp part.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 17 Feb 2015 17:05:04 +0100
parents 398988a77716
children 03b4fa99eff8
comparison
equal deleted inserted replaced
19449:398988a77716 19450:67337afcb69e
247 class_name->byte_at(class_name->utf8_length()-1) == ';') { 247 class_name->byte_at(class_name->utf8_length()-1) == ';') {
248 // This is a name from a signature. Strip off the trimmings. 248 // This is a name from a signature. Strip off the trimmings.
249 // Call recursive to keep scope of strippedsym. 249 // Call recursive to keep scope of strippedsym.
250 TempNewSymbol strippedsym = SymbolTable::new_symbol(class_name->as_utf8()+1, 250 TempNewSymbol strippedsym = SymbolTable::new_symbol(class_name->as_utf8()+1,
251 class_name->utf8_length()-2, 251 class_name->utf8_length()-2,
252 CHECK_NULL); 252 CHECK_0);
253 resolved_klass = SystemDictionary::find(strippedsym, class_loader, protection_domain, CHECK_0); 253 resolved_klass = SystemDictionary::find(strippedsym, class_loader, protection_domain, CHECK_0);
254 } else if (FieldType::is_array(class_name)) { 254 } else if (FieldType::is_array(class_name)) {
255 FieldArrayInfo fd; 255 FieldArrayInfo fd;
256 // dimension and object_key in FieldArrayInfo are assigned as a side-effect 256 // dimension and object_key in FieldArrayInfo are assigned as a side-effect
257 // of this call 257 // of this call