Commit c5ee8f9c authored by mbrandy's avatar mbrandy Committed by Commit bot

PPC: Refine '[strong] create strong array literals'

R=dstence@us.ibm.com, michael_dawson@ca.ibm.com
BUG=

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

Cr-Commit-Position: refs/heads/master@{#28765}
parent d0dce9ba
......@@ -271,10 +271,10 @@ void FullCodeGenerator::Generate() {
}
__ addi(r6, fp, Operand(StandardFrameConstants::kCallerSPOffset + offset));
__ mov(r5, Operand(Smi::FromInt(num_parameters)));
__ mov(r4, Operand(Smi::FromInt(rest_index)));
__ mov(r7, Operand(Smi::FromInt(language_mode())));
__ Push(r6, r5, r4, r7);
__ LoadSmiLiteral(r5, Smi::FromInt(num_parameters));
__ LoadSmiLiteral(r4, Smi::FromInt(rest_index));
__ LoadSmiLiteral(r3, Smi::FromInt(language_mode()));
__ Push(r6, r5, r4, r3);
RestParamAccessStub stub(isolate());
__ CallStub(&stub);
......
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