Index: src/mips64/builtins-mips64.cc |
diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc |
index 4cd9a388916ee6f41317d6b999f71d3c9ebcbe4b..e8d38a65ffa430b4c38e9fae9df8a9beff828ecd 100644 |
--- a/src/mips64/builtins-mips64.cc |
+++ b/src/mips64/builtins-mips64.cc |
@@ -721,9 +721,8 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) { |
} |
__ bind(&skip_flooding); |
- // Push receiver. |
- __ ld(a5, FieldMemOperand(a1, JSGeneratorObject::kReceiverOffset)); |
- __ Push(a5); |
+ // Push hole for the never-used receiver, similarly to arguments below. |
+ __ PushRoot(Heap::kTheHoleValueRootIndex); |
// ----------- S t a t e ------------- |
// -- a1 : the JSGeneratorObject to resume |