Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index e91b241579b0389aee2f373b262e80c0aefd7102..7d533074b9b11cddb6e7db6ea0ced0b2af34cb2e 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -47,7 +47,6 @@ namespace internal { |
V(Compare) \ |
V(CompareIC) \ |
V(MathPow) \ |
- V(ArrayLength) \ |
V(StringLength) \ |
V(FunctionPrototype) \ |
V(StoreArrayLength) \ |
@@ -597,16 +596,6 @@ class ICStub: public PlatformCodeStub { |
}; |
-class ArrayLengthStub: public ICStub { |
- public: |
- explicit ArrayLengthStub(Code::Kind kind) : ICStub(kind) { } |
- virtual void Generate(MacroAssembler* masm); |
- |
- private: |
- virtual CodeStub::Major MajorKey() { return ArrayLength; } |
-}; |
- |
- |
class FunctionPrototypeStub: public ICStub { |
public: |
explicit FunctionPrototypeStub(Code::Kind kind) : ICStub(kind) { } |