Commit 2adaabc6 by David Billinghurst Committed by Mark Mitchell

unwind-sjlj.c (_Unwind_GetRegionStart, [...]): Argument is unused.

	* unwind-sjlj.c (_Unwind_GetRegionStart, _Unwind_GetDataRelBase,
	_Unwind_GetTextRelBase): Argument is unused.

From-SVN: r45932
parent f47e9b4e
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> Mon Oct 1 19:20:57 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* alias.c (get_alias_set): Try to replace PLACEHOLDER_EXPR. * alias.c (get_alias_set): Try to replace PLACEHOLDER_EXPR.
......
...@@ -202,20 +202,20 @@ _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context) ...@@ -202,20 +202,20 @@ _Unwind_GetLanguageSpecificData (struct _Unwind_Context *context)
} }
_Unwind_Ptr _Unwind_Ptr
_Unwind_GetRegionStart (struct _Unwind_Context *context) _Unwind_GetRegionStart (struct _Unwind_Context *context __attribute__((unused)) )
{ {
return 0; return 0;
} }
#ifndef __ia64__ #ifndef __ia64__
_Unwind_Ptr _Unwind_Ptr
_Unwind_GetDataRelBase (struct _Unwind_Context *context) _Unwind_GetDataRelBase (struct _Unwind_Context *context __attribute__((unused)) )
{ {
return 0; return 0;
} }
_Unwind_Ptr _Unwind_Ptr
_Unwind_GetTextRelBase (struct _Unwind_Context *context) _Unwind_GetTextRelBase (struct _Unwind_Context *context __attribute__((unused)) )
{ {
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment