Switch gdbserver to gdbsupport event loop
[deliverable/binutils-gdb.git] / gdbserver / linux-aarch32-low.cc
index 41e018ab528dba9b6f386fb053674ea74cddba53..1ca0bfa8210d6412a4cebc083926dd6a6a7f6247 100644 (file)
@@ -192,13 +192,13 @@ arm_breakpoint_at (CORE_ADDR where)
       /* Thumb mode.  */
       unsigned short insn;
 
-      the_target->pt->read_memory (where, (unsigned char *) &insn, 2);
+      the_target->read_memory (where, (unsigned char *) &insn, 2);
       if (insn == thumb_breakpoint)
        return 1;
 
       if (insn == thumb2_breakpoint[0])
        {
-         the_target->pt->read_memory (where + 2, (unsigned char *) &insn, 2);
+         the_target->read_memory (where + 2, (unsigned char *) &insn, 2);
          if (insn == thumb2_breakpoint[1])
            return 1;
        }
@@ -208,7 +208,7 @@ arm_breakpoint_at (CORE_ADDR where)
       /* ARM mode.  */
       unsigned long insn;
 
-      the_target->pt->read_memory (where, (unsigned char *) &insn, 4);
+      the_target->read_memory (where, (unsigned char *) &insn, 4);
       if (insn == arm_abi_breakpoint)
        return 1;
 
This page took 0.029346 seconds and 4 git commands to generate.