unwind-sjlj.c (_Unwind_GetRegionStart, [...]): Argument is unused.
authorDavid Billinghurst <David.Billinghurst@riotinto.com>
Mon, 1 Oct 2001 23:31:47 +0000 (23:31 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Mon, 1 Oct 2001 23:31:47 +0000 (23:31 +0000)
* unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
_Unwind_GetTextRelBase): Argument is unused.

From-SVN: r45932

gcc/ChangeLog
gcc/unwind-sjlj.c

index 1762d1ebcdc3514fcbed1b252598ca0c71ea0ef8..414b6ff2b62397e9ad5c296724379bf01096cfab 100644 (file)
@@ -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.
index 46f30ae1d8f46a2e6fd82e2662399dc525803378..ff39ca4385f8731ede77c26b6d84c958af919b74 100644 (file)
@@ -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;
 }