Revision: 2962
Author: [email protected]
Date: Wed Sep 23 06:43:07 2009
Log: Merge bleeding_edge revision 2961 to trunk to fix test shell tests.
http://code.google.com/p/v8/source/detail?r=2962
Modified:
/trunk/src/heap-profiler.cc
/trunk/src/version.cc
=======================================
--- /trunk/src/heap-profiler.cc Wed Sep 23 02:40:39 2009
+++ /trunk/src/heap-profiler.cc Wed Sep 23 06:43:07 2009
@@ -67,10 +67,9 @@
if (obj->IsJSObject()) {
JSObject* js_obj = JSObject::cast(obj);
String* constructor = JSObject::cast(js_obj)->constructor_name();
- // Differentiate Array, Function, and Object instances.
+ // Differentiate Object and Array instances.
if (fine_grain && (constructor == Heap::Object_symbol() ||
- constructor == Heap::Array_symbol() ||
- constructor == Heap::function_class_symbol())) {
+ constructor == Heap::Array_symbol())) {
return JSObjectsCluster(constructor, obj);
} else {
return JSObjectsCluster(constructor);
=======================================
--- /trunk/src/version.cc Wed Sep 23 02:40:39 2009
+++ /trunk/src/version.cc Wed Sep 23 06:43:07 2009
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 1
#define MINOR_VERSION 3
#define BUILD_NUMBER 13
-#define PATCH_LEVEL 0
+#define PATCH_LEVEL 1
#define CANDIDATE_VERSION false
// Define SONAME to have the SCons build the put a specific SONAME into the
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---