diff options
author | David Billinghurst <David.Billinghurst@riotinto.com> | 2001-10-01 23:31:47 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-10-01 23:31:47 +0000 |
commit | 2adaabc6945da387fa19dd7a8f0f646f56e7cc39 (patch) | |
tree | 689e38c78b17f49904ff3d36c662924f06e79b8b /gcc/unwind-sjlj.c | |
parent | f47e9b4ebf7ee5983c2e5b36816eef62a9e461d1 (diff) | |
download | gcc-2adaabc6945da387fa19dd7a8f0f646f56e7cc39.tar.gz |
unwind-sjlj.c (_Unwind_GetRegionStart, [...]): Argument is unused.
* unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
_Unwind_GetTextRelBase): Argument is unused.
From-SVN: r45932
Diffstat (limited to 'gcc/unwind-sjlj.c')
-rw-r--r-- | gcc/unwind-sjlj.c | 6 |
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; } |