| Index: src/crankshaft/x64/lithium-x64.cc
|
| diff --git a/src/crankshaft/x64/lithium-x64.cc b/src/crankshaft/x64/lithium-x64.cc
|
| index c535a66ace38fb0340df01e74b6722091fb78f6f..671b83b727a881008bd7d457890cda070bc6b474 100644
|
| --- a/src/crankshaft/x64/lithium-x64.cc
|
| +++ b/src/crankshaft/x64/lithium-x64.cc
|
| @@ -2032,17 +2032,6 @@ LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), rsi);
|
| - LOperand* object =
|
| - UseFixed(instr->object(), LoadDescriptor::ReceiverRegister());
|
| - LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister());
|
| - LLoadNamedGeneric* result = new(zone()) LLoadNamedGeneric(
|
| - context, object, vector);
|
| - return MarkAsCall(DefineFixed(result, rax), instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadFunctionPrototype(
|
| HLoadFunctionPrototype* instr) {
|
| return AssignEnvironment(DefineAsRegister(
|
|
|