diff options
Diffstat (limited to 'opcodes/ft32-dis.c')
-rw-r--r-- | opcodes/ft32-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/ft32-dis.c b/opcodes/ft32-dis.c index 5f42fff..f486b38 100644 --- a/opcodes/ft32-dis.c +++ b/opcodes/ft32-dis.c @@ -81,7 +81,7 @@ ft32_opcode(bfd_vma addr ATTRIBUTE_UNUSED, switch (lobit) { case FT32_FLD_CBCRCV: - // imm is {CB, CV} + /* imm is {CB, CV} */ imm = ((iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1)) << 4; imm |= ((iword >> FT32_FLD_CV_BIT) & ((1 << FT32_FLD_CV_SIZ) - 1)); switch (imm) |