Chromium Code Reviews| Index: src/ia32/macro-assembler-ia32.cc |
| diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc |
| index 41c8667f1c726224776f18f5d2678f453ce76189..065aca77ada3018fee4d159d5d88eab8595964e9 100644 |
| --- a/src/ia32/macro-assembler-ia32.cc |
| +++ b/src/ia32/macro-assembler-ia32.cc |
| @@ -1801,7 +1801,9 @@ void MacroAssembler::CallRuntimeSaveDoubles(Runtime::FunctionId id) { |
| const Runtime::Function* function = Runtime::FunctionForId(id); |
| Set(eax, Immediate(function->nargs)); |
| mov(ebx, Immediate(ExternalReference(function, isolate()))); |
| - CEntryStub ces(1, kSaveFPRegs); |
| + CEntryStub ces(1, CpuFeatures::IsSupported(SSE2) |
|
Jakob Kummerow
2012/11/28 16:28:22
nit: indentation / line break.
CEntryStub ces(1,
danno
2012/11/30 16:23:24
Done.
|
| + ? kSaveFPRegs : |
| + kDontSaveFPRegs); |
| CallStub(&ces); |
| } |