summaryrefslogtreecommitdiff
path: root/deps/v8/src/x64/frames-x64.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/x64/frames-x64.h')
-rw-r--r--deps/v8/src/x64/frames-x64.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/deps/v8/src/x64/frames-x64.h b/deps/v8/src/x64/frames-x64.h
index 8813030284..1f8612afae 100644
--- a/deps/v8/src/x64/frames-x64.h
+++ b/deps/v8/src/x64/frames-x64.h
@@ -107,15 +107,6 @@ inline Object* JavaScriptFrame::function_slot_object() const {
}
-inline void StackHandler::SetFp(Address slot, Address fp) {
- if (kFPOnStackSize == 2 * kPointerSize) {
- // Zero out the high-32 bit of FP for x32 port.
- Memory::Address_at(slot + kPointerSize) = 0;
- }
- Memory::Address_at(slot) = fp;
-}
-
-
} } // namespace v8::internal
#endif // V8_X64_FRAMES_X64_H_