mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 05:34:13 +08:00
[IA64] Remove sparse warning from unwind code
Running ia64 through sparse gives warnings in the unwind code. include/asm-ia64/unwind.h:84:17: error: dubious bitfield without explicit `signed' or `unsigned' Make the bitfield explicitly unsigned. Signed-off-by: Keith Owens <kaos@sgi.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
parent
8e43d75ad0
commit
1f0ef4ef60
@ -81,7 +81,7 @@ struct unw_frame_info {
|
|||||||
struct unw_ireg {
|
struct unw_ireg {
|
||||||
unsigned long *loc;
|
unsigned long *loc;
|
||||||
struct unw_ireg_nat {
|
struct unw_ireg_nat {
|
||||||
long type : 3; /* enum unw_nat_type */
|
unsigned long type : 3; /* enum unw_nat_type */
|
||||||
signed long off : 61; /* NaT word is at loc+nat.off */
|
signed long off : 61; /* NaT word is at loc+nat.off */
|
||||||
} nat;
|
} nat;
|
||||||
} r4, r5, r6, r7;
|
} r4, r5, r6, r7;
|
||||||
|
Loading…
Reference in New Issue
Block a user