| Index: src/arm/simulator-arm.h
|
| diff --git a/src/arm/simulator-arm.h b/src/arm/simulator-arm.h
|
| index 9ae02c3e8d39b52351979f37782b51f68e0b9689..d55cca84a1e07c49bc8a8db323a62ab49e0a8da5 100644
|
| --- a/src/arm/simulator-arm.h
|
| +++ b/src/arm/simulator-arm.h
|
| @@ -37,9 +37,6 @@ typedef int (*arm_regexp_matcher)(String*, int, const byte*, const byte*,
|
| (FUNCTION_CAST<arm_regexp_matcher>(entry)( \
|
| p0, p1, p2, p3, NULL, p4, p5, p6, p7, p8))
|
|
|
| -#define TRY_CATCH_FROM_ADDRESS(try_catch_address) \
|
| - reinterpret_cast<TryCatch*>(try_catch_address)
|
| -
|
| // The stack limit beyond which we will throw stack overflow errors in
|
| // generated code. Because generated code on arm uses the C stack, we
|
| // just use the C stack limit.
|
| @@ -436,10 +433,6 @@ class Simulator {
|
| Simulator::current(Isolate::Current())->Call( \
|
| entry, 10, p0, p1, p2, p3, NULL, p4, p5, p6, p7, p8)
|
|
|
| -#define TRY_CATCH_FROM_ADDRESS(try_catch_address) \
|
| - try_catch_address == NULL ? \
|
| - NULL : *(reinterpret_cast<TryCatch**>(try_catch_address))
|
| -
|
|
|
| // The simulator has its own stack. Thus it has a different stack limit from
|
| // the C-based native code. Setting the c_limit to indicate a very small
|
|
|