| Index: src/mips64/simulator-mips64.h
|
| diff --git a/src/mips64/simulator-mips64.h b/src/mips64/simulator-mips64.h
|
| index 6c41ae111a3ede3659d6f362a280df1a3c3a5a44..8180b18f5c5d2bf7eff2c1fc93ce5024cafcad43 100644
|
| --- a/src/mips64/simulator-mips64.h
|
| +++ b/src/mips64/simulator-mips64.h
|
| @@ -45,8 +45,7 @@ typedef int (*mips_regexp_matcher)(String* input,
|
| #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
|
| p7, p8) \
|
| (FUNCTION_CAST<mips_regexp_matcher>(entry)(p0, p1, p2, p3, p4, p5, p6, p7, \
|
| - NULL, p8))
|
| -
|
| + p8))
|
|
|
| // The stack limit beyond which we will throw stack overflow errors in
|
| // generated code. Because generated code on mips uses the C stack, we
|
| @@ -560,13 +559,11 @@ class Simulator {
|
| reinterpret_cast<int64_t*>(p1), reinterpret_cast<int64_t*>(p2), \
|
| reinterpret_cast<int64_t*>(p3), reinterpret_cast<int64_t*>(p4)))
|
|
|
| -
|
| #define CALL_GENERATED_REGEXP_CODE(isolate, entry, p0, p1, p2, p3, p4, p5, p6, \
|
| p7, p8) \
|
| static_cast<int>(Simulator::current(isolate)->Call( \
|
| entry, 10, p0, p1, p2, p3, p4, reinterpret_cast<int64_t*>(p5), p6, p7, \
|
| - NULL, p8))
|
| -
|
| + p8))
|
|
|
| // The simulator has its own stack. Thus it has a different stack limit from
|
| // the C-based native code. The JS-based limit normally points near the end of
|
|
|