diff options
author | Keith Owens <kaos@sgi.com> | 2007-03-01 00:19:00 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-03-08 13:28:48 -0500 |
commit | 1f0ef4ef60b4ef0a18dfc50938f3a94c5edd66ce (patch) | |
tree | 2f22cf5ee2ba30f2fca58cc368ed8698cc8f1767 | |
parent | 8e43d75ad0bd8a90933abb005ef57caf63ce8541 (diff) |
[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>
-rw-r--r-- | include/asm-ia64/unwind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/unwind.h b/include/asm-ia64/unwind.h index 5df0276b0493..1af3875f1a57 100644 --- a/include/asm-ia64/unwind.h +++ b/include/asm-ia64/unwind.h | |||
@@ -81,7 +81,7 @@ struct unw_frame_info { | |||
81 | struct unw_ireg { | 81 | struct unw_ireg { |
82 | unsigned long *loc; | 82 | unsigned long *loc; |
83 | struct unw_ireg_nat { | 83 | struct unw_ireg_nat { |
84 | long type : 3; /* enum unw_nat_type */ | 84 | unsigned long type : 3; /* enum unw_nat_type */ |
85 | signed long off : 61; /* NaT word is at loc+nat.off */ | 85 | signed long off : 61; /* NaT word is at loc+nat.off */ |
86 | } nat; | 86 | } nat; |
87 | } r4, r5, r6, r7; | 87 | } r4, r5, r6, r7; |