Index: src/mips/code-stubs-mips.h |
diff --git a/src/mips/code-stubs-mips.h b/src/mips/code-stubs-mips.h |
index 77a02be219447a4951aacb23b2d56a9266967472..1ae1d3454fb743a01f602ec7577cf1d59e1e7f4b 100644 |
--- a/src/mips/code-stubs-mips.h |
+++ b/src/mips/code-stubs-mips.h |
@@ -145,21 +145,6 @@ class StringHelper : public AllStatic { |
}; |
-// Flag that indicates how to generate code for the stub StringAddStub. |
-enum StringAddFlags { |
- NO_STRING_ADD_FLAGS = 1 << 0, |
- // Omit left string check in stub (left is definitely a string). |
- NO_STRING_CHECK_LEFT_IN_STUB = 1 << 1, |
- // Omit right string check in stub (right is definitely a string). |
- NO_STRING_CHECK_RIGHT_IN_STUB = 1 << 2, |
- // Stub needs a frame before calling the runtime |
- ERECT_FRAME = 1 << 3, |
- // Omit both string checks in stub. |
- NO_STRING_CHECK_IN_STUB = |
- NO_STRING_CHECK_LEFT_IN_STUB | NO_STRING_CHECK_RIGHT_IN_STUB |
-}; |
- |
- |
class StringAddStub: public PlatformCodeStub { |
public: |
explicit StringAddStub(StringAddFlags flags) : flags_(flags) {} |