diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-15 18:12:17 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-15 18:12:17 +0000 |
commit | df5e9c68a7cd2b9536ef01240a804d168e81b807 (patch) | |
tree | e3cc02cee84944a2f0402e91c60c61df164bacda /gcc/config/arm | |
parent | e90b35dbc54c9f8f603007234afdfdf0b06e1a50 (diff) | |
download | gcc-df5e9c68a7cd2b9536ef01240a804d168e81b807.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118864 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/arm')
-rw-r--r-- | gcc/config/arm/pr-support.c | 14 | ||||
-rw-r--r-- | gcc/config/arm/unwind-arm.c | 13 |
2 files changed, 14 insertions, 13 deletions
diff --git a/gcc/config/arm/pr-support.c b/gcc/config/arm/pr-support.c index 0e750bf3e09..f0e733a11a7 100644 --- a/gcc/config/arm/pr-support.c +++ b/gcc/config/arm/pr-support.c @@ -379,3 +379,17 @@ _Unwind_GetLanguageSpecificData (_Unwind_Context * context) 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 (); +} diff --git a/gcc/config/arm/unwind-arm.c b/gcc/config/arm/unwind-arm.c index 9d2513b6897..6b7e2ddcd26 100644 --- a/gcc/config/arm/unwind-arm.c +++ b/gcc/config/arm/unwind-arm.c @@ -1001,16 +1001,3 @@ __aeabi_unwind_cpp_pr2 (_Unwind_State state, { 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 (); -} |