mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-10 19:23:41 +01:00
(unw_tdep_save_loc): Add new member "nat_bitnr". Define the
other 7 bytes (which were always there in unw_save_loc_t due to padding) as reserved for future use. (Logical change 1.181)
This commit is contained in:
parent
7c7bcebcc0
commit
1c00cf562e
1 changed files with 6 additions and 4 deletions
|
@ -137,10 +137,12 @@ ia64_regnum_t;
|
|||
typedef struct unw_tdep_save_loc
|
||||
{
|
||||
/* Additional target-dependent info on a save location. On IA-64,
|
||||
we could use this to specify the bit number in which a NaT bit
|
||||
gets saved. For now, nobody wants to know this, so it's not
|
||||
currently implemented. */
|
||||
char dummy; /* ANSI C doesn't allow empty structs... */
|
||||
we use this to provide the bit number in which a NaT bit gets
|
||||
saved. */
|
||||
uint8_t nat_bitnr;
|
||||
|
||||
/* Padding reserved for future use. */
|
||||
uint8_t reserved[7];
|
||||
}
|
||||
unw_tdep_save_loc_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue