| Index: src/mips64/macro-assembler-mips64.cc
|
| diff --git a/src/mips64/macro-assembler-mips64.cc b/src/mips64/macro-assembler-mips64.cc
|
| index 96010ac103f0a3d64208d4e15ba22ac2d4ea4c5d..dd12f9b51ad30c5ee00694e2d4501b452c914609 100644
|
| --- a/src/mips64/macro-assembler-mips64.cc
|
| +++ b/src/mips64/macro-assembler-mips64.cc
|
| @@ -6897,7 +6897,7 @@ void MacroAssembler::EmitSeqStringSetCharCheck(Register string,
|
| ld(at, FieldMemOperand(string, String::kLengthOffset));
|
| Check(lt, kIndexIsTooLarge, index, Operand(at));
|
|
|
| - DCHECK(Smi::kZero == 0);
|
| + DCHECK(Smi::FromInt(0) == 0);
|
| Check(ge, kIndexIsNegative, index, Operand(zero_reg));
|
| }
|
|
|
| @@ -7162,7 +7162,7 @@ void MacroAssembler::CheckEnumCache(Label* call_runtime) {
|
|
|
| // For all objects but the receiver, check that the cache is empty.
|
| EnumLength(a3, a1);
|
| - Branch(call_runtime, ne, a3, Operand(Smi::kZero));
|
| + Branch(call_runtime, ne, a3, Operand(Smi::FromInt(0)));
|
|
|
| bind(&start);
|
|
|
|
|