| Index: src/arm/lithium-codegen-arm.cc
|
| diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc
|
| index e2a0f2de867fd9ded3683e40d29f8300e952b04c..bd1663edc5a32d6b2a9877148c2b6a08d08e54ce 100644
|
| --- a/src/arm/lithium-codegen-arm.cc
|
| +++ b/src/arm/lithium-codegen-arm.cc
|
| @@ -4007,7 +4007,7 @@ void LCodeGen::DoRandom(LRandom* instr) {
|
| // Move 0x41300000xxxxxxxx (x = random bits) to VFP.
|
| __ vmov(d7, r0, r1);
|
| // Move 0x4130000000000000 to VFP.
|
| - __ mov(r0, Operand(0, RelocInfo::NONE));
|
| + __ mov(r0, Operand(0, RelocInfo::NONE32));
|
| __ vmov(d8, r0, r1);
|
| // Subtract and store the result in the heap number.
|
| __ vsub(d7, d7, d8);
|
| @@ -4763,7 +4763,7 @@ static void GenerateUInt2Double(MacroAssembler* masm,
|
| masm->orr(hiword, scratch,
|
| Operand(hiword, LSR, mantissa_shift_for_hi_word));
|
| } else {
|
| - masm->mov(loword, Operand(0, RelocInfo::NONE));
|
| + masm->mov(loword, Operand(0, RelocInfo::NONE32));
|
| masm->orr(hiword, scratch,
|
| Operand(hiword, LSL, -mantissa_shift_for_hi_word));
|
| }
|
|
|