forked from Imagelibrary/binutils-gdb
PR24421, Wrong brackets in opcodes/arm-dis.c
PR 24421 * arm-dis.c (print_insn_coprocessor): Correct bracket placement. (print_insn_neon, print_insn_arm): Likewise.
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2019-04-07 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
PR 24421
|
||||||
|
* arm-dis.c (print_insn_coprocessor): Correct bracket placement.
|
||||||
|
(print_insn_neon, print_insn_arm): Likewise.
|
||||||
|
|
||||||
2019-04-05 Xuepeng Guo <xuepeng.guo@intel.com>
|
2019-04-05 Xuepeng Guo <xuepeng.guo@intel.com>
|
||||||
|
|
||||||
* i386-dis-evex.h (evex_table): Updated to support BF16
|
* i386-dis-evex.h (evex_table): Updated to support BF16
|
||||||
|
|||||||
@@ -3836,6 +3836,7 @@ print_insn_coprocessor (bfd_vma pc,
|
|||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'y':
|
case 'y':
|
||||||
@@ -4021,7 +4022,6 @@ print_insn_coprocessor (bfd_vma pc,
|
|||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
func (stream, "%c", *c);
|
func (stream, "%c", *c);
|
||||||
}
|
}
|
||||||
@@ -4584,13 +4584,13 @@ print_insn_neon (struct disassemble_info *info, long given, bfd_boolean thumb)
|
|||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
func (stream, "%c", *c);
|
func (stream, "%c", *c);
|
||||||
}
|
}
|
||||||
@@ -5123,6 +5123,7 @@ print_insn_arm (bfd_vma pc, struct disassemble_info *info, long given)
|
|||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'e':
|
case 'e':
|
||||||
@@ -5183,7 +5184,6 @@ print_insn_arm (bfd_vma pc, struct disassemble_info *info, long given)
|
|||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
func (stream, "%c", *c);
|
func (stream, "%c", *c);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user