opcodes/
* rl78-dis.c (print_insn_rl78): Use alternative form as a GCC false warning workaround.
This commit is contained in:
parent
f81d112039
commit
731df338c0
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-04-10 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* rl78-dis.c (print_insn_rl78): Use alternative form as a GCC false
|
||||
warning workaround.
|
||||
|
||||
2013-04-08 Jan Beulich <jbeulich@suse.com>
|
||||
|
||||
* i386-opc.tbl: Fold 64-bit and non-64-bit jecxz entries.
|
||||
|
|
|
@ -217,7 +217,7 @@ print_insn_rl78 (bfd_vma addr, disassemble_info * dis)
|
|||
|
||||
case '0':
|
||||
case '1':
|
||||
oper = opcode.op + *s - '0';
|
||||
oper = *s == '0' ? &opcode.op[0] : &opcode.op[1];
|
||||
if (do_es)
|
||||
{
|
||||
if (oper->use_es && indirect_type (oper->type))
|
||||
|
|
Loading…
Reference in a new issue