1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-01-11 03:23:43 +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 typedef struct unw_tdep_save_loc
{ {
/* Additional target-dependent info on a save location. On IA-64, /* 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 we use this to provide the bit number in which a NaT bit gets
gets saved. For now, nobody wants to know this, so it's not saved. */
currently implemented. */ uint8_t nat_bitnr;
char dummy; /* ANSI C doesn't allow empty structs... */
/* Padding reserved for future use. */
uint8_t reserved[7];
} }
unw_tdep_save_loc_t; unw_tdep_save_loc_t;