diff options
Diffstat (limited to 'deps/v8/src/frames.cc')
-rw-r--r-- | deps/v8/src/frames.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/frames.cc b/deps/v8/src/frames.cc index 18dc54164a..3b60fb59fa 100644 --- a/deps/v8/src/frames.cc +++ b/deps/v8/src/frames.cc @@ -484,7 +484,7 @@ Address StackFrame::UnpaddedFP() const { Code* EntryFrame::unchecked_code() const { - return HEAP->raw_unchecked_js_entry_code(); + return HEAP->js_entry_code(); } @@ -507,7 +507,7 @@ StackFrame::Type EntryFrame::GetCallerState(State* state) const { Code* EntryConstructFrame::unchecked_code() const { - return HEAP->raw_unchecked_js_construct_entry_code(); + return HEAP->js_construct_entry_code(); } |