diff options
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/rs6000/linux-unwind.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4dc6892..d45c3a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2006-03-02 Ben Elliston <bje@au.ibm.com> + * config/rs6000/linux-unwind.h (frob_update_context): Mark `fs' + parameter as unused to suppress a build warning. + +2006-03-02 Ben Elliston <bje@au.ibm.com> + * mklibgcc.in: Depend on config/dfp-bit.h in rules that compile config/dfp-bit.c. diff --git a/gcc/config/rs6000/linux-unwind.h b/gcc/config/rs6000/linux-unwind.h index d01e6b1..da3bc8e 100644 --- a/gcc/config/rs6000/linux-unwind.h +++ b/gcc/config/rs6000/linux-unwind.h @@ -307,7 +307,7 @@ ppc_fallback_frame_state (struct _Unwind_Context *context, #define MD_FROB_UPDATE_CONTEXT frob_update_context static void -frob_update_context (struct _Unwind_Context *context, _Unwind_FrameState *fs) +frob_update_context (struct _Unwind_Context *context, _Unwind_FrameState *fs ATTRIBUTE_UNUSED) { const unsigned int *pc = (const unsigned int *) context->ra; |
