Reviewers: Weiliang,

Description:
X87: Fix build

BUG=

Please review this at https://codereview.chromium.org/545133003/

SVN Base: https://github.com/v8/v8.git@bleeding_edge

Affected files (+2, -2 lines):
  M src/x87/code-stubs-x87.cc
  M src/x87/macro-assembler-x87.cc


Index: src/x87/code-stubs-x87.cc
diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
index 0da86eb2101d2e669de7338b911f395830daba00..50ad9fb2f4907ebe06408606286ce0af3fb21594 100644
--- a/src/x87/code-stubs-x87.cc
+++ b/src/x87/code-stubs-x87.cc
@@ -3520,7 +3520,7 @@ void NameDictionaryLookupStub::Generate(MacroAssembler* masm) {

 void StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(
     Isolate* isolate) {
-  StoreBufferOverflowStub stub(isolate);
+  StoreBufferOverflowStub stub(isolate, kDontSaveFPRegs);
   stub.GetCode();
 }

Index: src/x87/macro-assembler-x87.cc
diff --git a/src/x87/macro-assembler-x87.cc b/src/x87/macro-assembler-x87.cc
index 6c5ba5d3d82d3b02ddba7932018175553e473fa8..2bd1041cf73845da22fc2b0e0fb08cd416daa689 100644
--- a/src/x87/macro-assembler-x87.cc
+++ b/src/x87/macro-assembler-x87.cc
@@ -179,7 +179,7 @@ void MacroAssembler::RememberedSetHelper(
     DCHECK(and_then == kFallThroughAtEnd);
     j(equal, &done, Label::kNear);
   }
-  StoreBufferOverflowStub store_buffer_overflow(isolate());
+ StoreBufferOverflowStub store_buffer_overflow(isolate(), kDontSaveFPRegs);
   CallStub(&store_buffer_overflow);
   if (and_then == kReturnAtEnd) {
     ret(0);


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to