Index: src/arm/code-stubs-arm.h |
diff --git a/src/arm/code-stubs-arm.h b/src/arm/code-stubs-arm.h |
index bee3e1e1268bbb511892c03d93938b9b8416fd5e..e7e7bfc00dbb0b530052073cff255c0b8b49a7d7 100644 |
--- a/src/arm/code-stubs-arm.h |
+++ b/src/arm/code-stubs-arm.h |
@@ -465,23 +465,6 @@ class RecordWriteStub: public PlatformCodeStub { |
}; |
-// Enter C code from generated RegExp code in a way that allows |
-// the C code to fix the return address in case of a GC. |
-// Currently only needed on ARM. |
-class RegExpCEntryStub: public PlatformCodeStub { |
- public: |
- RegExpCEntryStub() {} |
- virtual ~RegExpCEntryStub() {} |
- void Generate(MacroAssembler* masm); |
- |
- private: |
- Major MajorKey() { return RegExpCEntry; } |
- int MinorKey() { return 0; } |
- |
- bool NeedsImmovableCode() { return true; } |
-}; |
- |
- |
// Trampoline stub to call into native code. To call safely into native code |
// in the presence of compacting GC (which can move code objects) we need to |
// keep the code which called into native pinned in the memory. Currently the |