diff options
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; } |