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