| Index: src/x87/codegen-x87.cc
 | 
| diff --git a/src/x87/codegen-x87.cc b/src/x87/codegen-x87.cc
 | 
| index f4751d821d74af032a996aa748d1176c5457cdd9..496cfb410a11334db9fea6931649dec49a99004c 100644
 | 
| --- a/src/x87/codegen-x87.cc
 | 
| +++ b/src/x87/codegen-x87.cc
 | 
| @@ -46,7 +46,8 @@ 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),
 | 
| +                      CodeObjectRequired::kNo);
 | 
|    // Load double input into registers.
 | 
|    __ fld_d(MemOperand(esp, 4));
 | 
|    __ X87SetFPUCW(0x027F);
 | 
| @@ -100,7 +101,8 @@ MemMoveFunction CreateMemMoveFunction() {
 | 
|    byte* buffer =
 | 
|        static_cast<byte*>(base::OS::Allocate(1 * KB, &actual_size, true));
 | 
|    if (buffer == NULL) return NULL;
 | 
| -  MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size));
 | 
| +  MacroAssembler masm(NULL, buffer, static_cast<int>(actual_size),
 | 
| +                      CodeObjectRequired::kNo);
 | 
|    LabelConverter conv(buffer);
 | 
|  
 | 
|    // Generated code is put into a fixed, unmovable buffer, and not into
 | 
| 
 |