| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index 5dd7cbfdcfed784f26e10204913181daf5d07fbc..52bd01069ac100d7781db948a43906ae23cac51a 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -93,7 +93,6 @@ class LCodeGen;
|
| V(LoadFieldByIndex) \
|
| V(LoadFunctionPrototype) \
|
| V(LoadKeyed) \
|
| - V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| V(LoadRoot) \
|
| V(MathAbs) \
|
| @@ -1555,25 +1554,6 @@ inline static bool ExternalArrayOpRequiresTemp(
|
| }
|
|
|
|
|
| -class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
|
| - public:
|
| - LLoadKeyedGeneric(LOperand* context, LOperand* obj, LOperand* key,
|
| - LOperand* vector) {
|
| - inputs_[0] = context;
|
| - inputs_[1] = obj;
|
| - inputs_[2] = key;
|
| - temps_[0] = vector;
|
| - }
|
| -
|
| - LOperand* context() { return inputs_[0]; }
|
| - LOperand* object() { return inputs_[1]; }
|
| - LOperand* key() { return inputs_[2]; }
|
| - LOperand* temp_vector() { return temps_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
|
| - DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric)
|
| -};
|
| -
|
| class LLoadContextSlot final : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadContextSlot(LOperand* context) {
|
|
|