Index: src/runtime.cc |
=================================================================== |
--- src/runtime.cc (revision 1141) |
+++ src/runtime.cc (working copy) |
@@ -3772,7 +3772,9 @@ |
ASSERT(args.length() == 1); |
// First check if this is a real stack overflow. |
- if (StackGuard::IsStackOverflow()) return Runtime_StackOverflow(args); |
+ if (StackGuard::IsStackOverflow()) { |
+ return Runtime_StackOverflow(args); |
+ } |
return Execution::HandleStackGuardInterrupt(); |
} |