diff options
Diffstat (limited to 'gdb/gdbarch.h')
-rw-r--r-- | gdb/gdbarch.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index 0117322..d8420cc 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -120,6 +120,12 @@ extern void set_gdbarch_long_bit (struct gdbarch *gdbarch, int long_bit); extern int gdbarch_long_long_bit (struct gdbarch *gdbarch); extern void set_gdbarch_long_long_bit (struct gdbarch *gdbarch, int long_long_bit); +/* Alignment of a long long or unsigned long long for the target + machine. */ + +extern int gdbarch_long_long_align_bit (struct gdbarch *gdbarch); +extern void set_gdbarch_long_long_align_bit (struct gdbarch *gdbarch, int long_long_align_bit); + /* The ABI default bit-size and format for "half", "float", "double", and "long double". These bit/format pairs should eventually be combined into a single object. For the moment, just initialize them as a pair. @@ -586,7 +592,7 @@ extern void set_gdbarch_smash_text_address (struct gdbarch *gdbarch, gdbarch_sma FIXME/cagney/2001-01-18: The logic is backwards. It should be asking if the target can single step. If not, then implement single step using breakpoints. - A return value of 1 means that the software_single_step breakpoints + A return value of 1 means that the software_single_step breakpoints were inserted; 0 means they were not. */ extern int gdbarch_software_single_step_p (struct gdbarch *gdbarch); |