Revision: 20597
Author:   pal...@homejinni.com
Date:     Wed Apr  9 08:19:46 2014 UTC
Log:      Merged r20315 into 3.25 branch.

Add Bogus initialization for external_elements_kind and fixed_elements_kind

R=da...@chromium.org
BUG=

Review URL: https://codereview.chromium.org/230023002
http://code.google.com/p/v8/source/detail?r=20597

Modified:
 /branches/3.25/src/runtime.cc
 /branches/3.25/src/version.cc

=======================================
--- /branches/3.25/src/runtime.cc       Wed Apr  9 08:07:57 2014 UTC
+++ /branches/3.25/src/runtime.cc       Wed Apr  9 08:19:46 2014 UTC
@@ -966,8 +966,9 @@

ExternalArrayType array_type = kExternalInt8Array; // Bogus initialization.
   size_t element_size = 1;  // Bogus initialization.
-  ElementsKind external_elements_kind = EXTERNAL_INT8_ELEMENTS;
-  ElementsKind fixed_elements_kind = INT8_ELEMENTS;
+  ElementsKind external_elements_kind =
+      EXTERNAL_INT8_ELEMENTS;  // Bogus initialization.
+ ElementsKind fixed_elements_kind = INT8_ELEMENTS; // Bogus initialization.
   Runtime::ArrayIdToTypeAndSize(arrayId,
       &array_type,
       &external_elements_kind,
@@ -1044,8 +1045,9 @@

ExternalArrayType array_type = kExternalInt8Array; // Bogus initialization.
   size_t element_size = 1;  // Bogus initialization.
-  ElementsKind external_elements_kind;
-  ElementsKind fixed_elements_kind;
+  ElementsKind external_elements_kind =
+      EXTERNAL_INT8_ELEMENTS;  // Bogus intialization.
+ ElementsKind fixed_elements_kind = INT8_ELEMENTS; // Bogus initialization.
   Runtime::ArrayIdToTypeAndSize(arrayId,
       &array_type,
       &external_elements_kind,
=======================================
--- /branches/3.25/src/version.cc       Wed Apr  9 08:07:57 2014 UTC
+++ /branches/3.25/src/version.cc       Wed Apr  9 08:19:46 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     25
 #define BUILD_NUMBER      28
-#define PATCH_LEVEL       9
+#define PATCH_LEVEL       10
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to