src/cpu/x86/vm/frame_x86.cpp

changeset 7553
f43fad8786fc
parent 6680
78bbf4d43a14
child 7854
e8260b6328fb
     1.1 --- a/src/cpu/x86/vm/frame_x86.cpp	Mon Dec 15 18:11:51 2014 +0400
     1.2 +++ b/src/cpu/x86/vm/frame_x86.cpp	Wed Sep 24 12:19:07 2014 -0700
     1.3 @@ -717,3 +717,10 @@
     1.4    assert(! is_compiled_frame(), "unknown compiled frame size");
     1.5    return fp();
     1.6  }
     1.7 +
     1.8 +#ifndef PRODUCT
     1.9 +// This is a generic constructor which is only used by pns() in debug.cpp.
    1.10 +frame::frame(void* sp, void* fp, void* pc) {
    1.11 +  init((intptr_t*)sp, (intptr_t*)fp, (address)pc);
    1.12 +}
    1.13 +#endif

mercurial