| Index: src/ia32/simulator-ia32.h
|
| diff --git a/src/ia32/simulator-ia32.h b/src/ia32/simulator-ia32.h
|
| index cb660cd326e589dca2752a7ff0969e14ff39b41d..13ddf35cae6575848d0569eecbdeacdcf5741b1e 100644
|
| --- a/src/ia32/simulator-ia32.h
|
| +++ b/src/ia32/simulator-ia32.h
|
| @@ -56,7 +56,9 @@ typedef int (*regexp_matcher)(String*, int, const byte*,
|
| // just use the C stack limit.
|
| class SimulatorStack : public v8::internal::AllStatic {
|
| public:
|
| - static inline uintptr_t JsLimitFromCLimit(uintptr_t c_limit) {
|
| + static inline uintptr_t JsLimitFromCLimit(Isolate* isolate,
|
| + uintptr_t c_limit) {
|
| + USE(isolate);
|
| return c_limit;
|
| }
|
|
|
|
|