| Index: src/arm/simulator-arm.cc
|
| ===================================================================
|
| --- src/arm/simulator-arm.cc (revision 9808)
|
| +++ src/arm/simulator-arm.cc (working copy)
|
| @@ -1268,9 +1268,9 @@
|
|
|
| // Returns the limit of the stack area to enable checking for stack overflows.
|
| uintptr_t Simulator::StackLimit() const {
|
| - // Leave a safety margin of 256 bytes to prevent overrunning the stack when
|
| + // Leave a safety margin of 512 bytes to prevent overrunning the stack when
|
| // pushing values.
|
| - return reinterpret_cast<uintptr_t>(stack_) + 256;
|
| + return reinterpret_cast<uintptr_t>(stack_) + 512;
|
| }
|
|
|
|
|
|
|