src/share/vm/ci/ciEnv.cpp

changeset 7074
833b0f92429a
parent 6911
ce8f6bb717c9
child 7183
dd89808e49ba
     1.1 --- a/src/share/vm/ci/ciEnv.cpp	Wed Aug 27 09:36:55 2014 +0200
     1.2 +++ b/src/share/vm/ci/ciEnv.cpp	Wed Aug 27 08:19:12 2014 -0400
     1.3 @@ -86,7 +86,8 @@
     1.4  
     1.5  // ------------------------------------------------------------------
     1.6  // ciEnv::ciEnv
     1.7 -ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter) {
     1.8 +ciEnv::ciEnv(CompileTask* task, int system_dictionary_modification_counter)
     1.9 +  : _ciEnv_arena(mtCompiler) {
    1.10    VM_ENTRY_MARK;
    1.11  
    1.12    // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.
    1.13 @@ -139,7 +140,7 @@
    1.14    _the_min_jint_string = NULL;
    1.15  }
    1.16  
    1.17 -ciEnv::ciEnv(Arena* arena) {
    1.18 +ciEnv::ciEnv(Arena* arena) : _ciEnv_arena(mtCompiler) {
    1.19    ASSERT_IN_VM;
    1.20  
    1.21    // Set up ciEnv::current immediately, for the sake of ciObjectFactory, etc.

mercurial