| Index: src/compiler/mips64/instruction-selector-mips64.cc
|
| diff --git a/src/compiler/mips64/instruction-selector-mips64.cc b/src/compiler/mips64/instruction-selector-mips64.cc
|
| index f18e17ac9a7ffcac585fa62d7c9461238ce8ac26..1b12bd9aec745fef5fd65f9b7c498f5c64e6b115 100644
|
| --- a/src/compiler/mips64/instruction-selector-mips64.cc
|
| +++ b/src/compiler/mips64/instruction-selector-mips64.cc
|
| @@ -1595,12 +1595,12 @@ void VisitWordCompareZero(InstructionSelector* selector, Node* user,
|
| if (ProjectionIndexOf(value->op()) == 1u) {
|
| // We cannot combine the <Operation>WithOverflow with this branch
|
| // unless the 0th projection (the use of the actual value of the
|
| - // <Operation> is either NULL, which means there's no use of the
|
| + // <Operation> is either nullptr, which means there's no use of the
|
| // actual value, or was already defined, which means it is scheduled
|
| // *AFTER* this branch).
|
| Node* const node = value->InputAt(0);
|
| Node* const result = NodeProperties::FindProjection(node, 0);
|
| - if (result == NULL || selector->IsDefined(result)) {
|
| + if (result == nullptr || selector->IsDefined(result)) {
|
| switch (node->opcode()) {
|
| case IrOpcode::kInt32AddWithOverflow:
|
| cont->OverwriteAndNegateIfEqual(kOverflow);
|
|
|