From 069e02ab47656b3efd1b6829c65856b2e1c2d1db Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Tue, 1 Mar 2016 08:58:05 -0800 Subject: deps: upgrade to V8 4.9.385.18 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pick up the current branch head for V8 4.9 https://github.com/v8/v8/commit/1ecba0f PR-URL: https://github.com/nodejs/node/pull/4722 Reviewed-By: Ben Noordhuis Reviewed-By: Michaƫl Zasso --- deps/v8/src/gdb-jit.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deps/v8/src/gdb-jit.cc') diff --git a/deps/v8/src/gdb-jit.cc b/deps/v8/src/gdb-jit.cc index d0fd8223e1..819bd69e07 100644 --- a/deps/v8/src/gdb-jit.cc +++ b/deps/v8/src/gdb-jit.cc @@ -1187,7 +1187,7 @@ class DebugInfoSection : public DebugSection { DCHECK(Context::CLOSURE_INDEX == 0); DCHECK(Context::PREVIOUS_INDEX == 1); DCHECK(Context::EXTENSION_INDEX == 2); - DCHECK(Context::GLOBAL_OBJECT_INDEX == 3); + DCHECK(Context::NATIVE_CONTEXT_INDEX == 3); w->WriteULEB128(current_abbreviation++); w->WriteString(".closure"); w->WriteULEB128(current_abbreviation++); @@ -1195,7 +1195,7 @@ class DebugInfoSection : public DebugSection { w->WriteULEB128(current_abbreviation++); w->WriteString(".extension"); w->WriteULEB128(current_abbreviation++); - w->WriteString(".global"); + w->WriteString(".native_context"); for (int context_slot = 0; context_slot < context_slots; -- cgit v1.2.1