Index: src/ppc/codegen-ppc.cc |
diff --git a/src/ppc/codegen-ppc.cc b/src/ppc/codegen-ppc.cc |
index 26914f7585a7a90ed904e2579382012f5d752e74..beba9a570ea27925fb36982885f0c8a192b0dcc2 100644 |
--- a/src/ppc/codegen-ppc.cc |
+++ b/src/ppc/codegen-ppc.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); |
{ |
DoubleRegister input = d1; |
@@ -82,7 +82,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); |
// Called from C |
__ function_descriptor(); |