diff options
Diffstat (limited to 'gdb/arc-tdep.h')
-rw-r--r-- | gdb/arc-tdep.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/arc-tdep.h b/gdb/arc-tdep.h index 8bb005c..d8495ed 100644 --- a/gdb/arc-tdep.h +++ b/gdb/arc-tdep.h @@ -121,27 +121,27 @@ extern bool arc_debug; /* Target-dependent information. */ -struct gdbarch_tdep +struct arc_gdbarch_tdep : gdbarch_tdep { /* Offset to PC value in jump buffer. If this is negative, longjmp support will be disabled. */ - int jb_pc; + int jb_pc = 0; /* Whether target has hardware (aka zero-delay) loops. */ - bool has_hw_loops; + bool has_hw_loops = false; /* Detect sigtramp. */ - bool (*is_sigtramp) (struct frame_info *); + bool (*is_sigtramp) (struct frame_info *) = nullptr; /* Get address of sigcontext for sigtramp. */ - CORE_ADDR (*sigcontext_addr) (struct frame_info *); + CORE_ADDR (*sigcontext_addr) (struct frame_info *) = nullptr; /* Offset of registers in `struct sigcontext'. */ - const int *sc_reg_offset; + const int *sc_reg_offset = nullptr; /* Number of registers in sc_reg_offsets. Most likely a ARC_LAST_REGNUM, but in theory it could be less, so it is kept separate. */ - int sc_num_regs; + int sc_num_regs = 0; }; /* Utility functions used by other ARC-specific modules. */ |