mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
[ob/pushed] Use gdb_insn_length instead of creating dummy stream
gdb/ChangeLog: 2017-02-01 Pedro Alves <palves@redhat.com> * i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
This commit is contained in:
parent
a8128fa6a7
commit
be85ce7dcb
@ -1,3 +1,7 @@
|
||||
2017-02-01 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
|
||||
|
||||
2017-01-31 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* mi/mi-interp.c (mi_breakpoint_created, mi_breakpoint_modified):
|
||||
|
@ -8110,7 +8110,6 @@ i386_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr,
|
||||
char **msg)
|
||||
{
|
||||
int len, jumplen;
|
||||
static struct ui_file *gdb_null = NULL;
|
||||
|
||||
/* Ask the target for the minimum instruction length supported. */
|
||||
jumplen = target_get_min_fast_tracepoint_insn_len ();
|
||||
@ -8133,12 +8132,8 @@ i386_fast_tracepoint_valid_at (struct gdbarch *gdbarch, CORE_ADDR addr,
|
||||
jumplen = (register_size (gdbarch, 0) == 8) ? 5 : 4;
|
||||
}
|
||||
|
||||
/* Dummy file descriptor for the disassembler. */
|
||||
if (!gdb_null)
|
||||
gdb_null = ui_file_new ();
|
||||
|
||||
/* Check for fit. */
|
||||
len = gdb_print_insn (gdbarch, addr, gdb_null, NULL);
|
||||
len = gdb_insn_length (gdbarch, addr);
|
||||
|
||||
if (len < jumplen)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user