From 8d4303e06c255fea2c474ce28cca7b74a848ce7c Mon Sep 17 00:00:00 2001 From: "danno@chromium.org" Date: Fri, 1 Apr 2011 11:21:46 +0000 Subject: [PATCH] Fix Win64 build isolate problem R=ager@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/6764014 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7471 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/x64/codegen-x64.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x64/codegen-x64.cc b/src/x64/codegen-x64.cc index 406c1bb..00ee513 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(actual_size)); + Assembler masm(Isolate::Current(), buffer, static_cast(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). -- 2.7.4