Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index 555cad9899410bc83d7923ea798d80817362dd60..a4b87664bb10a1629d8b304a7f4a536e8dfaa641 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -2271,7 +2271,11 @@ void FullCodeGenerator::EmitResolvePossiblyDirectEval(int arg_count) { |
__ li(a1, Operand(Smi::FromInt(strict_mode))); |
__ push(a1); |
- __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 4); |
+ // Push the start position of the scope the calls resides in. |
+ __ li(a1, Operand(Smi::FromInt(scope()->start_position()))); |
+ __ push(a1); |
+ |
+ __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 5); |
} |