Reviewers: danno,
Description:
MIPS: fix build breakage due to r9607, faster slow asserts.
BUG=
TEST=
Please review this at http://codereview.chromium.org/8283025/
Affected files:
M src/mips/code-stubs-mips.cc
Index: src/mips/code-stubs-mips.cc
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc
index
fe251b9e6fa9d27cccad365a11645f6dffff6550..6b37ca0a34740f7d976b2bfd412b6a22d33b1bde
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.
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev