| Index: src/ia32/lithium-ia32.cc
|
| ===================================================================
|
| --- src/ia32/lithium-ia32.cc (revision 7281)
|
| +++ src/ia32/lithium-ia32.cc (working copy)
|
| @@ -2030,6 +2030,13 @@
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoToFastProperties(HToFastProperties* instr) {
|
| + LOperand* object = UseFixed(instr->value(), eax);
|
| + LToFastProperties* result = new LToFastProperties(object);
|
| + return MarkAsCall(DefineFixed(result, eax), instr);
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoTypeof(HTypeof* instr) {
|
| LTypeof* result = new LTypeof(UseAtStart(instr->value()));
|
| return MarkAsCall(DefineFixed(result, eax), instr);
|
|
|