| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index d5fd35dcec4c35de36d726dd8ab376cd9aa91b32..c8f7b91802cefaa8721149bc7036419bf124c39e 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -1883,8 +1883,9 @@ LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) {
|
| - Abort("Unimplemented: %s", "DoDeleteProperty");
|
| - return NULL;
|
| + LDeleteProperty* result =
|
| + new LDeleteProperty(Use(instr->object()), UseOrConstant(instr->key()));
|
| + return MarkAsCall(DefineFixed(result, rax), instr);
|
| }
|
|
|
|
|
|
|