gdb: convert callback_handler_installed from int to bool
[binutils-gdb.git] / gdb / mn10300-tdep.h
index e9bcbe4296d79a6df9a648cf550d2f8b3c7beaae..10fef99c5d769b1b0c820650c71d345a5fe9013d 100644 (file)
@@ -1,6 +1,6 @@
 /* Target-dependent interface for Matsushita MN10300 for GDB, the GNU debugger.
 
-   Copyright (C) 1996-2019 Free Software Foundation, Inc.
+   Copyright (C) 1996-2022 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
+#ifndef MN10300_TDEP_H
+#define MN10300_TDEP_H
+
+#include "gdbarch.h"
+
 enum {
   E_D0_REGNUM = 0,
   E_D1_REGNUM = 1,
@@ -71,9 +76,16 @@ enum frame_kind {
 };
 
 /* mn10300 private data.  */
-struct gdbarch_tdep
+struct mn10300_gdbarch_tdep : gdbarch_tdep
 {
   int am33_mode;
 };
 
-#define AM33_MODE(gdbarch) (gdbarch_tdep (gdbarch)->am33_mode)
+static inline int
+get_am33_mode (gdbarch *arch)
+{
+  mn10300_gdbarch_tdep *tdep = (mn10300_gdbarch_tdep *) gdbarch_tdep (arch);
+  return tdep->am33_mode;
+}
+
+#endif /* MN10300_TDEP_H */