Version 3.7.10

Set maximum length of FixedArray in terms of elements instead an absolute number of bytes. (Chromium issue 103103)

Stability and performance improvements on all platforms.

git-svn-id: http://v8.googlecode.com/svn/trunk@10052 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc
index a4b8766..77ef41c 100644
--- a/src/mips/full-codegen-mips.cc
+++ b/src/mips/full-codegen-mips.cc
@@ -137,6 +137,8 @@
   ASSERT(info_ == NULL);
   info_ = info;
   scope_ = info->scope();
+  handler_table_ =
+      isolate()->factory()->NewFixedArray(function()->handler_count(), TENURED);
   SetFunctionPosition(function());
   Comment cmnt(masm_, "[ function compiled by full code generator");