src/share/vm/utilities/growableArray.cpp

changeset 3900
d2a62e0f25eb
parent 3156
f08d439fab8c
child 4153
b9a9ed0f8eeb
     1.1 --- a/src/share/vm/utilities/growableArray.cpp	Wed Jun 27 15:23:36 2012 +0200
     1.2 +++ b/src/share/vm/utilities/growableArray.cpp	Thu Jun 28 17:03:16 2012 -0400
     1.3 @@ -61,7 +61,7 @@
     1.4    if (on_stack()) {
     1.5      return (void*)resource_allocate_bytes(byte_size);
     1.6    } else if (on_C_heap()) {
     1.7 -    return (void*)AllocateHeap(byte_size, "GrET in " __FILE__);
     1.8 +    return (void*)AllocateHeap(byte_size, _memflags);
     1.9    } else {
    1.10      return _arena->Amalloc(byte_size);
    1.11    }

mercurial