Revision: 14924
Author:   [email protected]
Date:     Mon Jun  3 09:06:25 2013
Log:      Merged r14923 into trunk branch.

Fix windows build.

[email protected]
BUG=

Review URL: https://chromiumcodereview.appspot.com/16336006
http://code.google.com/p/v8/source/detail?r=14924

Modified:
 /trunk/src/compiler.cc
 /trunk/src/version.cc

=======================================
--- /trunk/src/compiler.cc      Mon Jun  3 08:43:46 2013
+++ /trunk/src/compiler.cc      Mon Jun  3 09:06:25 2013
@@ -424,7 +424,7 @@
// graph creation. To make sure that we don't encounter inconsistencies
     // between graph creation and code generation, we disallow accessing
     // objects through deferred handles during the latter, with exceptions.
-    DisallowDeferredHandleDereference no_deferred_handle_deref();
+    DisallowDeferredHandleDereference no_deferred_handle_deref;
     Handle<Code> optimized_code = chunk_->Codegen();
     if (optimized_code.is_null()) {
       info()->set_bailout_reason("code generation failed");
=======================================
--- /trunk/src/version.cc       Mon Jun  3 08:43:46 2013
+++ /trunk/src/version.cc       Mon Jun  3 09:06:25 2013
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     19
 #define BUILD_NUMBER      8
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // 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
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to