From: Andreas Jaeger Date: Sat, 23 Jun 2001 16:06:51 +0000 (+0000) Subject: * unwind-ia64.c (unw_decode_x1): Add unused attribute for X-Git-Tag: dberlin-typesystem-branchpoint~152 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49b4e3867814ae0c7ddb9b26c91e3f9beb5e005a;p=platform%2Fupstream%2Fbinutils.git * unwind-ia64.c (unw_decode_x1): Add unused attribute for parameter 'code'. (unw_decode_x2): Likewise. (unw_decode_x3): Likewise. (unw_decode_x4): Likewise. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 647e960..de1ca76 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,11 @@ +2001-06-23 Andreas Jaeger + + * unwind-ia64.c (unw_decode_x1): Add unused attribute for + parameter 'code'. + (unw_decode_x2): Likewise. + (unw_decode_x3): Likewise. + (unw_decode_x4): Likewise. + 2001-06-23 Ben Elliston * MAINTAINERS: Add myself as M88k maintainer. @@ -104,9 +112,9 @@ * NEWS: Announce support for OpenRISC. 2001-04-17 Danny Smith - - * dlltool.c (do_default_excludes): Initialise to true. - + + * dlltool.c (do_default_excludes): Initialise to true. + 2001-04-10 Alan Modra * MAINTAINERS: Update my email address diff --git a/binutils/unwind-ia64.c b/binutils/unwind-ia64.c index 3b05c77..5696688 100644 --- a/binutils/unwind-ia64.c +++ b/binutils/unwind-ia64.c @@ -577,7 +577,7 @@ unw_decode_uleb128 (dpp) static const unsigned char * unw_decode_x1 (dp, code, arg) const unsigned char * dp; - unsigned char code; + unsigned char code ATTRIBUTE_UNUSED; void * arg ATTRIBUTE_UNUSED; { unsigned char byte1, abreg; @@ -597,7 +597,7 @@ unw_decode_x1 (dp, code, arg) static const unsigned char * unw_decode_x2 (dp, code, arg) const unsigned char * dp; - unsigned char code; + unsigned char code ATTRIBUTE_UNUSED; void * arg ATTRIBUTE_UNUSED; { unsigned char byte1, byte2, abreg, x, ytreg; @@ -619,7 +619,7 @@ unw_decode_x2 (dp, code, arg) static const unsigned char * unw_decode_x3 (dp, code, arg) const unsigned char * dp; - unsigned char code; + unsigned char code ATTRIBUTE_UNUSED; void * arg ATTRIBUTE_UNUSED; { unsigned char byte1, byte2, abreg, qp; @@ -643,7 +643,7 @@ unw_decode_x3 (dp, code, arg) static const unsigned char * unw_decode_x4 (dp, code, arg) const unsigned char * dp; - unsigned char code; + unsigned char code ATTRIBUTE_UNUSED; void * arg ATTRIBUTE_UNUSED; { unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg;