Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index b2d1b361d6721d57dc7477534a07e08e16b0ab07..abf2f02bca6d1e6e900699aa5ba1f2dc1d4f22f9 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2212,25 +2212,24 @@ LInstruction* LChunkBuilder::DoStringLength(HStringLength* instr) { |
} |
-LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { |
+LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
return MarkAsCall( |
- DefineFixed(new(zone()) LArrayLiteral(context), eax), instr); |
+ DefineFixed(new(zone()) LFastLiteral(context), eax), instr); |
} |
-LInstruction* LChunkBuilder::DoObjectLiteralFast(HObjectLiteralFast* instr) { |
+LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
return MarkAsCall( |
- DefineFixed(new(zone()) LObjectLiteralFast(context), eax), instr); |
+ DefineFixed(new(zone()) LArrayLiteral(context), eax), instr); |
} |
-LInstruction* LChunkBuilder::DoObjectLiteralGeneric( |
- HObjectLiteralGeneric* instr) { |
+LInstruction* LChunkBuilder::DoObjectLiteral(HObjectLiteral* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
return MarkAsCall( |
- DefineFixed(new(zone()) LObjectLiteralGeneric(context), eax), instr); |
+ DefineFixed(new(zone()) LObjectLiteral(context), eax), instr); |
} |