Index: src/x64/disasm-x64.cc |
diff --git a/src/x64/disasm-x64.cc b/src/x64/disasm-x64.cc |
index 75adc8988f5d63d84b14ab0c3410e6cb1a1c0457..ded6c331ecf3ef9ff6b8f247a4364fa617c7b7f6 100644 |
--- a/src/x64/disasm-x64.cc |
+++ b/src/x64/disasm-x64.cc |
@@ -803,7 +803,7 @@ int DisassemblerX64::ShiftInstruction(byte* data) { |
UnimplementedInstruction(); |
return count + 1; |
} |
- DCHECK_NE(NULL, mnem); |
+ DCHECK_NOT_NULL(mnem); |
AppendToBuffer("%s%c ", mnem, operand_size_code()); |
} |
count += PrintRightOperand(data + count); |