From b86db3d73e15c4a582e3ab45ddcb4473456c2b79 Mon Sep 17 00:00:00 2001 From: "danno@chromium.org" Date: Fri, 14 Oct 2011 07:08:20 +0000 Subject: [PATCH] MIPS: fix build breakage due to r9607, faster slow asserts. BUG= TEST= Review URL: http://codereview.chromium.org/8283025 Patch from Paul Lind . git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9616 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mips/code-stubs-mips.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc index fe251b9..6b37ca0 100644 --- a/src/mips/code-stubs-mips.cc +++ b/src/mips/code-stubs-mips.cc @@ -6889,7 +6889,7 @@ void DirectCEntryStub::Generate(MacroAssembler* masm) { // The saved ra is after the reserved stack space for the 4 args. __ lw(t9, MemOperand(sp, kCArgsSlotsSize)); - if (FLAG_debug_code && EnableSlowAsserts()) { + if (FLAG_debug_code && FLAG_enable_slow_asserts) { // In case of an error the return address may point to a memory area // filled with kZapValue by the GC. // Dereference the address and check for this. -- 2.7.4