Reviewers: Vitaly Repeshko,

Message:
Do we have an Isolate at the point that we call this?  I though we wanted to
move this earlier in the initialization.

Description:
Fix Windows 64-bit build.


BUG=
TEST=


Please review this at http://codereview.chromium.org/6764013/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/x64/codegen-x64.cc


Index: src/x64/codegen-x64.cc
diff --git a/src/x64/codegen-x64.cc b/src/x64/codegen-x64.cc
index 406c1bb593ebeb43c88c9aa39e5639e26ee019ce..00ee51348f166b7fb09f774a023bdf80cda3a4c2 100644
--- a/src/x64/codegen-x64.cc
+++ b/src/x64/codegen-x64.cc
@@ -8755,7 +8755,7 @@ ModuloFunction CreateModuloFunction() {
                                                  &actual_size,
                                                  true));
   CHECK(buffer);
-  Assembler masm(buffer, static_cast<int>(actual_size));
+ Assembler masm(Isolate::Current(), buffer, static_cast<int>(actual_size));
   // Generated code is put into a fixed, unmovable, buffer, and not into
   // the V8 heap. We can't, and don't, refer to any relocatable addresses
   // (e.g. the JavaScript nan-object).


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to