| Index: src/arm64/constants-arm64.h
|
| diff --git a/src/arm64/constants-arm64.h b/src/arm64/constants-arm64.h
|
| index d06dd08b834398e92d7f7897dfa2ab3cdb91511a..8db120ba459f3e23a915d5e9b061d830a4437cee 100644
|
| --- a/src/arm64/constants-arm64.h
|
| +++ b/src/arm64/constants-arm64.h
|
| @@ -262,7 +262,7 @@ enum Condition {
|
| inline Condition NegateCondition(Condition cond) {
|
| // Conditions al and nv behave identically, as "always true". They can't be
|
| // inverted, because there is no never condition.
|
| - ASSERT((cond != al) && (cond != nv));
|
| + DCHECK((cond != al) && (cond != nv));
|
| return static_cast<Condition>(cond ^ 1);
|
| }
|
|
|
| @@ -400,7 +400,7 @@ enum SystemRegister {
|
| //
|
| // The enumerations can be used like this:
|
| //
|
| -// ASSERT(instr->Mask(PCRelAddressingFMask) == PCRelAddressingFixed);
|
| +// DCHECK(instr->Mask(PCRelAddressingFMask) == PCRelAddressingFixed);
|
| // switch(instr->Mask(PCRelAddressingMask)) {
|
| // case ADR: Format("adr 'Xd, 'AddrPCRelByte"); break;
|
| // case ADRP: Format("adrp 'Xd, 'AddrPCRelPage"); break;
|
|
|