aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Billinghurst <David.Billinghurst@riotinto.com>2001-10-01 23:31:47 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2001-10-01 23:31:47 +0000
commit2adaabc6945da387fa19dd7a8f0f646f56e7cc39 (patch)
tree689e38c78b17f49904ff3d36c662924f06e79b8b
parentf47e9b4ebf7ee5983c2e5b36816eef62a9e461d1 (diff)
downloadgcc-2adaabc6945da387fa19dd7a8f0f646f56e7cc39.zip
gcc-2adaabc6945da387fa19dd7a8f0f646f56e7cc39.tar.gz
gcc-2adaabc6945da387fa19dd7a8f0f646f56e7cc39.tar.bz2
unwind-sjlj.c (_Unwind_GetRegionStart, [...]): Argument is unused.
* unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase, _Unwind_GetTextRelBase): Argument is unused. From-SVN: r45932
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/unwind-sjlj.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1762d1e..414b6ff 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-01 David Billinghurst <David.Billinghurst@riotinto.com>
+
+ * unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
+ _Unwind_GetTextRelBase): Argument is unused.
+
Mon Oct 1 19:20:57 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* alias.c (get_alias_set): Try to replace PLACEHOLDER_EXPR.
diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c
index 46f30ae..ff39ca4 100644
--- a/gcc/unwind-sjlj.c
+++ b/gcc/unwind-sjlj.c
@@ -202,20 +202,20 @@ _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context)
}
_Unwind_Ptr
-_Unwind_GetRegionStart (struct _Unwind_Context *context)
+_Unwind_GetRegionStart (struct _Unwind_Context *context __attribute__((unused)) )
{
return 0;
}
#ifndef __ia64__
_Unwind_Ptr
-_Unwind_GetDataRelBase (struct _Unwind_Context *context)
+_Unwind_GetDataRelBase (struct _Unwind_Context *context __attribute__((unused)) )
{
return 0;
}
_Unwind_Ptr
-_Unwind_GetTextRelBase (struct _Unwind_Context *context)
+_Unwind_GetTextRelBase (struct _Unwind_Context *context __attribute__((unused)) )
{
return 0;
}