| Index: src/mips/lithium-mips.cc
|
| ===================================================================
|
| --- src/mips/lithium-mips.cc (revision 10218)
|
| +++ src/mips/lithium-mips.cc (working copy)
|
| @@ -2071,11 +2071,17 @@
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoObjectLiteral(HObjectLiteral* instr) {
|
| - return MarkAsCall(DefineFixed(new LObjectLiteral, v0), instr);
|
| +LInstruction* LChunkBuilder::DoObjectLiteralFast(HObjectLiteralFast* instr) {
|
| + return MarkAsCall(DefineFixed(new LObjectLiteralFast, v0), instr);
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoObjectLiteralGeneric(
|
| + HObjectLiteralGeneric* instr) {
|
| + return MarkAsCall(DefineFixed(new LObjectLiteralGeneric, v0), instr);
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoRegExpLiteral(HRegExpLiteral* instr) {
|
| return MarkAsCall(DefineFixed(new LRegExpLiteral, v0), instr);
|
| }
|
|
|