Index: runtime/vm/code_generator.cc |
diff --git a/runtime/vm/code_generator.cc b/runtime/vm/code_generator.cc |
index 758c2e077c62de5ef0fe67617942befbd0d205b0..4ebd2496dc9305b1bae6dd69ee0aa1515dcf3d15 100644 |
--- a/runtime/vm/code_generator.cc |
+++ b/runtime/vm/code_generator.cc |
@@ -1349,7 +1349,7 @@ DEFINE_RUNTIME_ENTRY(StackOverflow, 0) { |
ActivationFrame* frame = stack->FrameAt(i); |
// Variable locations and number are unknown when precompiling. |
const int num_vars = |
- FLAG_precompiled_mode ? 0 : frame->NumLocalVariables(); |
+ FLAG_precompiled_runtime ? 0 : frame->NumLocalVariables(); |
TokenPosition unused = TokenPosition::kNoSource; |
for (intptr_t v = 0; v < num_vars; v++) { |
frame->VariableAt(v, &var_name, &unused, &unused, &var_value); |