aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-06-23 16:06:51 +0000
committerAndreas Jaeger <aj@suse.de>2001-06-23 16:06:51 +0000
commit49b4e3867814ae0c7ddb9b26c91e3f9beb5e005a (patch)
treecf4f2aea40c797aac4f2bf23d01cfcce376b73af
parent8c69491410fc58feb443b5b0a07b7a2eec85060c (diff)
downloadgdb-49b4e3867814ae0c7ddb9b26c91e3f9beb5e005a.zip
gdb-49b4e3867814ae0c7ddb9b26c91e3f9beb5e005a.tar.gz
gdb-49b4e3867814ae0c7ddb9b26c91e3f9beb5e005a.tar.bz2
* unwind-ia64.c (unw_decode_x1): Add unused attribute for
parameter 'code'. (unw_decode_x2): Likewise. (unw_decode_x3): Likewise. (unw_decode_x4): Likewise.
-rw-r--r--binutils/ChangeLog14
-rw-r--r--binutils/unwind-ia64.c8
2 files changed, 15 insertions, 7 deletions
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 <aj@suse.de>
+
+ * 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 <bje@redhat.com>
* MAINTAINERS: Add myself as M88k maintainer.
@@ -104,9 +112,9 @@
* NEWS: Announce support for OpenRISC.
2001-04-17 Danny Smith <dannysmith@users.sourceforge.net>
-
- * dlltool.c (do_default_excludes): Initialise to true.
-
+
+ * dlltool.c (do_default_excludes): Initialise to true.
+
2001-04-10 Alan Modra <amodra@one.net.au>
* 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;