| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 5a095b50c79e445d88c5bbdf87a39ee42594d20a..08946529aaf8b7a586d62beca506538c3a69bcce 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -105,7 +105,6 @@ class LCodeGen;
|
| V(InnerAllocatedObject) \
|
| V(InstanceOf) \
|
| V(InstanceOfKnownGlobal) \
|
| - V(InstanceSize) \
|
| V(InstructionGap) \
|
| V(Integer32ToDouble) \
|
| V(Integer32ToSmi) \
|
| @@ -1148,19 +1147,6 @@ class LInstanceOfKnownGlobal V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| };
|
|
|
|
|
| -class LInstanceSize V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LInstanceSize(LOperand* object) {
|
| - inputs_[0] = object;
|
| - }
|
| -
|
| - LOperand* object() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(InstanceSize, "instance-size")
|
| - DECLARE_HYDROGEN_ACCESSOR(InstanceSize)
|
| -};
|
| -
|
| -
|
| class LBoundsCheck V8_FINAL : public LTemplateInstruction<0, 2, 0> {
|
| public:
|
| LBoundsCheck(LOperand* index, LOperand* length) {
|
|
|