Commit 57e2eec9 authored by akos.palfi's avatar akos.palfi Committed by Commit bot

MIPS64: Fix 'Migrate FastCloneShallowObjectStub to TurboFan'

Port 53253799

BUG=

Review URL: https://codereview.chromium.org/1900743002

Cr-Commit-Position: refs/heads/master@{#35592}
parent 6903ecbf
...@@ -1425,7 +1425,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) { ...@@ -1425,7 +1425,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) {
} else { } else {
FastCloneShallowObjectStub stub(isolate(), expr->properties_count()); FastCloneShallowObjectStub stub(isolate(), expr->properties_count());
__ CallStub(&stub); __ CallStub(&stub);
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); __ ld(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
} }
PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG); PrepareForBailoutForId(expr->CreateLiteralId(), TOS_REG);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment