Commit 66403286 by Paul Brook Committed by Paul Brook

unwind-arm.c (_Unwind_GetDataRelBase, [...]): Move from here ...

2006-11-15  Paul Brook  <paul@codesourcery.com>

	gcc/
	* config/arm/unwind-arm.c (_Unwind_GetDataRelBase,
	_Unwind_GetTextRelBase): Move from here ...
	* config/arm/pr-support.c (_Unwind_GetDataRelBase,
	_Unwind_GetTextRelBase): ... To here.

From-SVN: r118864
parent b1dd92fd
2006-11-15 Paul Brook <paul@codesourcery.com>
* config/arm/unwind-arm.c (_Unwind_GetDataRelBase,
_Unwind_GetTextRelBase): Move from here ...
* config/arm/pr-support.c (_Unwind_GetDataRelBase,
_Unwind_GetTextRelBase): ... To here.
2006-11-15 Bernd Schmidt <bernd.schmidt@analog.com> 2006-11-15 Bernd Schmidt <bernd.schmidt@analog.com>
* tree-ssa-loop-ivopts.c (get_address_cost): Make sure memory * tree-ssa-loop-ivopts.c (get_address_cost): Make sure memory
......
...@@ -379,3 +379,17 @@ _Unwind_GetLanguageSpecificData (_Unwind_Context * context) ...@@ -379,3 +379,17 @@ _Unwind_GetLanguageSpecificData (_Unwind_Context * context)
return ptr; return ptr;
} }
/* These two should never be used. */
_Unwind_Ptr
_Unwind_GetDataRelBase (_Unwind_Context *context __attribute__ ((unused)))
{
abort ();
}
_Unwind_Ptr
_Unwind_GetTextRelBase (_Unwind_Context *context __attribute__ ((unused)))
{
abort ();
}
...@@ -1001,16 +1001,3 @@ __aeabi_unwind_cpp_pr2 (_Unwind_State state, ...@@ -1001,16 +1001,3 @@ __aeabi_unwind_cpp_pr2 (_Unwind_State state,
{ {
return __gnu_unwind_pr_common (state, ucbp, context, 2); return __gnu_unwind_pr_common (state, ucbp, context, 2);
} }
/* These two should never be used. */
_Unwind_Ptr
_Unwind_GetDataRelBase (_Unwind_Context *context __attribute__ ((unused)))
{
abort ();
}
_Unwind_Ptr
_Unwind_GetTextRelBase (_Unwind_Context *context __attribute__ ((unused)))
{
abort ();
}
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