gdb/ChangeLog:
2017-02-01  Pedro Alves  <palves@redhat.com>
	* i386-tdep.c (i386_fast_tracepoint_valid_at): Use gdb_insn_length.
+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):
 
                               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 ();
       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)
     {