| Index: src/mips/simulator-mips.cc
|
| ===================================================================
|
| --- src/mips/simulator-mips.cc (revision 9808)
|
| +++ src/mips/simulator-mips.cc (working copy)
|
| @@ -1359,9 +1359,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;
|
| }
|
|
|
|
|
|
|