gas: Update commit 4780e5e4933
[binutils-gdb.git] / gdbserver / linux-aarch32-low.cc
index c6a70249d3bbb35adc13c1540d959634140a8daa..8f733e7d4334b94b7db377a392786930cc6377be 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2020 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2021 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -192,13 +192,13 @@ arm_breakpoint_at (CORE_ADDR where)
       /* Thumb mode.  */
       unsigned short insn;
 
-      (*the_target->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->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->read_memory) (where, (unsigned char *) &insn, 4);
+      the_target->read_memory (where, (unsigned char *) &insn, 4);
       if (insn == arm_abi_breakpoint)
        return 1;