| Index: src/x64/lithium-x64.cc
|
| diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc
|
| index e35a381faacd932d223a4a64d1d45a317e491007..a5d789d491ede1403fa1157cabc222041fd69f98 100644
|
| --- a/src/x64/lithium-x64.cc
|
| +++ b/src/x64/lithium-x64.cc
|
| @@ -979,6 +979,12 @@ LInstruction* LChunkBuilder::DoInstanceOfKnownGlobal(
|
| }
|
|
|
|
|
| +LInstruction* LChunkBuilder::DoInstanceSize(HInstanceSize* instr) {
|
| + LOperand* object = UseRegisterAtStart(instr->object());
|
| + return DefineAsRegister(new(zone()) LInstanceSize(object));
|
| +}
|
| +
|
| +
|
| LInstruction* LChunkBuilder::DoWrapReceiver(HWrapReceiver* instr) {
|
| LOperand* receiver = UseRegister(instr->receiver());
|
| LOperand* function = UseRegisterAtStart(instr->function());
|
|
|