| Index: src/mips/lithium-mips.cc
|
| diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc
|
| index 0bc222339f3bd4a16643c93135ae2f7f0a175c60..3a2f3d964e56c32e37fbe7d3cf23556f9ce13b63 100644
|
| --- a/src/mips/lithium-mips.cc
|
| +++ b/src/mips/lithium-mips.cc
|
| @@ -2093,19 +2093,18 @@ LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) {
|
| - return MarkAsCall(DefineFixed(new LArrayLiteral, v0), instr);
|
| +LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) {
|
| + return MarkAsCall(DefineFixed(new LFastLiteral, v0), instr);
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoObjectLiteralFast(HObjectLiteralFast* instr) {
|
| - return MarkAsCall(DefineFixed(new LObjectLiteralFast, v0), instr);
|
| +LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) {
|
| + return MarkAsCall(DefineFixed(new LArrayLiteral, v0), instr);
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoObjectLiteralGeneric(
|
| - HObjectLiteralGeneric* instr) {
|
| - return MarkAsCall(DefineFixed(new LObjectLiteralGeneric, v0), instr);
|
| +LInstruction* LChunkBuilder::DoObjectLiteral(HObjectLiteral* instr) {
|
| + return MarkAsCall(DefineFixed(new LObjectLiteral, v0), instr);
|
| }
|
|
|
|
|
|
|