Index: src/deoptimizer.h |
diff --git a/src/deoptimizer.h b/src/deoptimizer.h |
index e2cf05367bdfc5c306e06cc97b29380dee4fd0d3..8b1152d52957a7da6e37ecb56c4a07d17767accd 100644 |
--- a/src/deoptimizer.h |
+++ b/src/deoptimizer.h |
@@ -267,7 +267,11 @@ class Deoptimizer : public Malloced { |
int ConvertJSFrameIndexToFrameIndex(int jsframe_index); |
private: |
+#ifdef V8_TARGET_ARCH_MIPS |
+ static const int kNumberOfEntries = 4096; |
fschneider
2012/01/26 15:33:40
Maybe add a comment to why the size is smaller on
|
+#else |
static const int kNumberOfEntries = 8192; |
+#endif |
Deoptimizer(Isolate* isolate, |
JSFunction* function, |