From b059ba4ed09de0abf4ad760bbaf1a3beba3dc1c0 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Thu, 3 Dec 2020 15:32:37 +0800 Subject: [PATCH] code style fix --- arch/M68K/M68KDisassembler.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/arch/M68K/M68KDisassembler.c b/arch/M68K/M68KDisassembler.c index 8ccdcbca1..7c38c6fd0 100644 --- a/arch/M68K/M68KDisassembler.c +++ b/arch/M68K/M68KDisassembler.c @@ -2037,17 +2037,14 @@ static void d68020_cpgen(m68k_info *info) ext->op_size.cpu_size = 0; // Special case - adjust direction of fmove - if ((opmode == 0x00) && ((next >> 13) & 0x1) != 0) - { + if ((opmode == 0x00) && ((next >> 13) & 0x1) != 0) { op0 = &ext->operands[1]; op1 = &ext->operands[0]; - } - else - { + } else { op0 = &ext->operands[0]; op1 = &ext->operands[1]; } - + if (rm == 0 && supports_single_op && src == dst) { ext->op_count = 1; op0->reg = M68K_REG_FP0 + dst;