src/share/vm/classfile/classFileParser.cpp

changeset 2533
c5a923563727
parent 2497
3582bf76420e
child 2616
dbad0519a1c4
     1.1 --- a/src/share/vm/classfile/classFileParser.cpp	Thu Feb 03 20:49:09 2011 -0800
     1.2 +++ b/src/share/vm/classfile/classFileParser.cpp	Mon Feb 07 22:19:57 2011 -0800
     1.3 @@ -331,7 +331,7 @@
     1.4      length, CHECK_(nullHandle));
     1.5    constantPoolOop constant_pool =
     1.6                        oopFactory::new_constantPool(length,
     1.7 -                                                   methodOopDesc::IsSafeConc,
     1.8 +                                                   oopDesc::IsSafeConc,
     1.9                                                     CHECK_(nullHandle));
    1.10    constantPoolHandle cp (THREAD, constant_pool);
    1.11  
    1.12 @@ -1929,10 +1929,9 @@
    1.13    }
    1.14  
    1.15    // All sizing information for a methodOop is finally available, now create it
    1.16 -  methodOop m_oop  = oopFactory::new_method(
    1.17 -    code_length, access_flags, linenumber_table_length,
    1.18 -    total_lvt_length, checked_exceptions_length,
    1.19 -    methodOopDesc::IsSafeConc, CHECK_(nullHandle));
    1.20 +  methodOop m_oop  = oopFactory::new_method(code_length, access_flags, linenumber_table_length,
    1.21 +                                            total_lvt_length, checked_exceptions_length,
    1.22 +                                            oopDesc::IsSafeConc, CHECK_(nullHandle));
    1.23    methodHandle m (THREAD, m_oop);
    1.24  
    1.25    ClassLoadingService::add_class_method_size(m_oop->size()*HeapWordSize);

mercurial