summaryrefslogtreecommitdiff
path: root/gcc/unwind-sjlj.c
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-01 23:31:47 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-01 23:31:47 +0000
commit3b6bce1cf3fd2712f94f3c47c4fc233a46ed6d01 (patch)
tree689e38c78b17f49904ff3d36c662924f06e79b8b /gcc/unwind-sjlj.c
parentc3a9c1491f5e4ec2fe1faae609bd2287e4fce011 (diff)
downloadgcc-3b6bce1cf3fd2712f94f3c47c4fc233a46ed6d01.tar.gz
* unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
_Unwind_GetTextRelBase): Argument is unused. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45932 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unwind-sjlj.c')
-rw-r--r--gcc/unwind-sjlj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/unwind-sjlj.c b/gcc/unwind-sjlj.c
index 46f30ae1d8f..ff39ca4385f 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;
}