Chromium Code Reviews| Index: src/x64/disasm-x64.cc |
| diff --git a/src/x64/disasm-x64.cc b/src/x64/disasm-x64.cc |
| index 75adc8988f5d63d84b14ab0c3410e6cb1a1c0457..c094a425a1defc000cf52936b600bfc3fa2a8373 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(mnem); |
| AppendToBuffer("%s%c ", mnem, operand_size_code()); |
| } |
| count += PrintRightOperand(data + count); |