Reviewers: rossberg,
Description:
Merged r14923 into trunk branch.
Fix windows build.
[email protected]
BUG=
Please review this at https://chromiumcodereview.appspot.com/16336006/
SVN Base: https://v8.googlecode.com/svn/trunk
Affected files:
M src/compiler.cc
M src/version.cc
Index: src/compiler.cc
diff --git a/src/compiler.cc b/src/compiler.cc
index
1334f5aaf4194905c70247442e85e486f137dcbb..9983b3d983439dcf10df13a3fee1444013aae9cf
100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -424,7 +424,7 @@ OptimizingCompiler::Status
OptimizingCompiler::GenerateAndInstallCode() {
// 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");
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index
0f1ecfb7ed68f029189db39f6af4cb336517b917..ca4eaa5d96ad00006d1add0865a48ce90b608b18
100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -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.