src/cpu/zero/vm/frame_zero.inline.hpp

changeset 5545
e16282db4946
parent 5497
c54a3122f9c8
child 6198
55fb97c4c58d
     1.1 --- a/src/cpu/zero/vm/frame_zero.inline.hpp	Mon Aug 19 09:33:29 2013 +0200
     1.2 +++ b/src/cpu/zero/vm/frame_zero.inline.hpp	Tue Aug 20 10:57:50 2013 -0700
     1.3 @@ -36,7 +36,7 @@
     1.4    _deopt_state = unknown;
     1.5  }
     1.6  
     1.7 -inline address  frame::sender_pc()           const { ShouldNotCallThis();  }
     1.8 +inline address  frame::sender_pc()           const { ShouldNotCallThis(); return NULL; }
     1.9  
    1.10  inline frame::frame(ZeroFrame* zf, intptr_t* sp) {
    1.11    _zeroframe = zf;
    1.12 @@ -89,6 +89,7 @@
    1.13  
    1.14  inline intptr_t* frame::link() const {
    1.15    ShouldNotCallThis();
    1.16 +  return NULL;
    1.17  }
    1.18  
    1.19  #ifdef CC_INTERP
    1.20 @@ -151,14 +152,17 @@
    1.21  
    1.22  inline oop frame::saved_oop_result(RegisterMap* map) const {
    1.23    ShouldNotCallThis();
    1.24 +  return NULL;
    1.25  }
    1.26  
    1.27  inline bool frame::is_older(intptr_t* id) const {
    1.28    ShouldNotCallThis();
    1.29 +  return false;
    1.30  }
    1.31  
    1.32  inline intptr_t* frame::entry_frame_argument_at(int offset) const {
    1.33    ShouldNotCallThis();
    1.34 +  return NULL;
    1.35  }
    1.36  
    1.37  inline intptr_t* frame::unextended_sp() const {

mercurial