summaryrefslogtreecommitdiff
path: root/runtime/entrypoints/entrypoint_utils.cc
diff options
context:
space:
mode:
author Dave Allison <dallison@google.com> 2014-08-14 17:02:48 +0000
committer Dave Allison <dallison@google.com> 2014-08-19 09:30:39 -0700
commitb090a18e4292dc339a3b2668bf6dc855928dee3a (patch)
treefa12ca73ca33f48e2d2a1539db830a63996f8161 /runtime/entrypoints/entrypoint_utils.cc
parent75dd98835859ca98c9f98339da8b64640d09a175 (diff)
Merge stack usage reduction for overflow checks
Cherry pick from: b038ba66a166fb264ca121632f447712e0973b5b Change-Id: I19999e72ff731d4fc73d91b9ff767de5858c15ee
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils.cc')
-rw-r--r--runtime/entrypoints/entrypoint_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints/entrypoint_utils.cc b/runtime/entrypoints/entrypoint_utils.cc
index a0e35f88fa..cf89850fa2 100644
--- a/runtime/entrypoints/entrypoint_utils.cc
+++ b/runtime/entrypoints/entrypoint_utils.cc
@@ -211,7 +211,7 @@ void ThrowStackOverflowError(Thread* self) {
}
bool explicit_overflow_check = Runtime::Current()->ExplicitStackOverflowChecks();
- self->ResetDefaultStackEnd(!explicit_overflow_check); // Return to default stack size.
+ self->ResetDefaultStackEnd(); // Return to default stack size.
// And restore protection if implicit checks are on.
if (!explicit_overflow_check) {