Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index b65f085d3d70711ae4aad75ce9f1ec2bfd2198da..d4240c8192c9a6fcfcd97e3c8bec901b14cfbc49 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -52,7 +52,6 @@ namespace internal { |
V(CompareNilIC) \ |
V(MathPow) \ |
V(FunctionPrototype) \ |
- V(StoreArrayLength) \ |
V(RecordWrite) \ |
V(StoreBufferOverflow) \ |
V(RegExpExec) \ |
@@ -855,17 +854,6 @@ class StoreICStub: public ICStub { |
}; |
-class StoreArrayLengthStub: public StoreICStub { |
- public: |
- explicit StoreArrayLengthStub(Code::Kind kind, StrictMode strict_mode) |
- : StoreICStub(kind, strict_mode) { } |
- virtual void Generate(MacroAssembler* masm); |
- |
- private: |
- virtual CodeStub::Major MajorKey() { return StoreArrayLength; } |
-}; |
- |
- |
class HICStub: public HydrogenCodeStub { |
public: |
virtual Code::Kind GetCodeKind() const { return kind(); } |