File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3535#define MAJOR_VERSION 3
3636#define MINOR_VERSION 29
3737#define BUILD_NUMBER 88
38- #define PATCH_LEVEL 16
38+ #define PATCH_LEVEL 17
3939// Use 1 for candidates and 0 otherwise.
4040// (Boolean macro values are not supported by all preprocessors.)
4141#define IS_CANDIDATE_VERSION 0
Original file line number Diff line number Diff line change @@ -4060,8 +4060,8 @@ void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
40604060 __ mov (esi, Operand (ebp, StandardFrameConstants::kContextOffset ));
40614061 __ push (temp_result);
40624062 __ CallRuntimeSaveDoubles (Runtime::kMathSqrtRT );
4063- RecordSafepointWithRegisters (
4064- instr-> pointer_map (), 0 , Safepoint::kNoLazyDeopt );
4063+ RecordSafepointWithRegisters (instr-> pointer_map (), 1 ,
4064+ Safepoint::kNoLazyDeopt );
40654065 __ StoreToSafepointRegisterSlot (temp_result, eax);
40664066 }
40674067 X87PrepareToWrite (result_reg);
@@ -4275,7 +4275,7 @@ void LCodeGen::DoMathExp(LMathExp* instr) {
42754275 __ mov (esi, Operand (ebp, StandardFrameConstants::kContextOffset ));
42764276 __ push (temp_result);
42774277 __ CallRuntimeSaveDoubles (Runtime::kMathExpRT );
4278- RecordSafepointWithRegisters (instr->pointer_map (), 0 ,
4278+ RecordSafepointWithRegisters (instr->pointer_map (), 1 ,
42794279 Safepoint::kNoLazyDeopt );
42804280 __ StoreToSafepointRegisterSlot (temp_result, eax);
42814281 }
You can’t perform that action at this time.
0 commit comments