< prev index next >

src/hotspot/cpu/aarch64/frame_aarch64.cpp

Print this page

        

*** 69,81 **** if (!sp_safe) { return false; } ! // unextended sp must be within the stack and above or equal sp ! bool unextended_sp_safe = (unextended_sp < thread->stack_base()) && ! (unextended_sp >= sp); if (!unextended_sp_safe) { return false; } --- 69,80 ---- if (!sp_safe) { return false; } ! // unextended sp must be within the stack ! bool unextended_sp_safe = (unextended_sp < thread->stack_base()); if (!unextended_sp_safe) { return false; }
< prev index next >