1
0
Fork 0
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:
mostang.com!davidm 2004-02-27 08:54:25 +00:00
parent 7c7bcebcc0
commit 1c00cf562e

View file

@ -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;