Index: src/arm/codegen-arm.cc |
diff --git a/src/arm/codegen-arm.cc b/src/arm/codegen-arm.cc |
index 98a8abe97afc4574bc5f7dccfd0a6b65a0cc75d3..e63a6ba98af67327f695190850c85c92ecf6da9f 100644 |
--- a/src/arm/codegen-arm.cc |
+++ b/src/arm/codegen-arm.cc |
@@ -33,7 +33,7 @@ UnaryMathFunctionWithIsolate CreateExpFunction(Isolate* isolate) { |
if (buffer == nullptr) return nullptr; |
ExternalReference::InitializeMathExpData(); |
- MacroAssembler masm(nullptr, buffer, static_cast<int>(actual_size)); |
+ MacroAssembler masm(isolate, buffer, static_cast<int>(actual_size), false); |
{ |
DwVfpRegister input = d0; |
@@ -88,7 +88,7 @@ MemCopyUint8Function CreateMemCopyUint8Function(MemCopyUint8Function stub) { |
static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true)); |
if (buffer == NULL) return stub; |
- MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |
+ MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size), false); |
Register dest = r0; |
Register src = r1; |
@@ -245,7 +245,7 @@ MemCopyUint16Uint8Function CreateMemCopyUint16Uint8Function( |
static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true)); |
if (buffer == NULL) return stub; |
- MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |
+ MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size), false); |
Register dest = r0; |
Register src = r1; |
@@ -330,7 +330,7 @@ UnaryMathFunction CreateSqrtFunction() { |
static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true)); |
if (buffer == NULL) return &std::sqrt; |
- MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size)); |
+ MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size), false); |
__ MovFromFloatParameter(d0); |
__ vsqrt(d0, d0); |