Index: src/ia32/code-stubs-ia32.h |
diff --git a/src/ia32/code-stubs-ia32.h b/src/ia32/code-stubs-ia32.h |
index dc21d40b23c2ca037e2bc6f39998f4b58888b074..563b5a9006948896a7fa015aa45d2f611309a219 100644 |
--- a/src/ia32/code-stubs-ia32.h |
+++ b/src/ia32/code-stubs-ia32.h |
@@ -144,20 +144,6 @@ class StringHelper : public AllStatic { |
}; |
-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) {} |