aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2006-11-15 18:12:17 +0000
committerPaul Brook <pbrook@gcc.gnu.org>2006-11-15 18:12:17 +0000
commit66403286e3e88b42c38fcb1a0651c2767f124614 (patch)
treee3cc02cee84944a2f0402e91c60c61df164bacda
parentb1dd92fd59d73a819f1109333b69047bcb4e4f58 (diff)
downloadgcc-66403286e3e88b42c38fcb1a0651c2767f124614.zip
gcc-66403286e3e88b42c38fcb1a0651c2767f124614.tar.gz
gcc-66403286e3e88b42c38fcb1a0651c2767f124614.tar.bz2
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
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/arm/pr-support.c14
-rw-r--r--gcc/config/arm/unwind-arm.c13
3 files changed, 21 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a36144b..d02d733 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,10 @@
+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>
* tree-ssa-loop-ivopts.c (get_address_cost): Make sure memory
diff --git a/gcc/config/arm/pr-support.c b/gcc/config/arm/pr-support.c
index 0e750bf..f0e733a 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 9d2513b..6b7e2dd 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 ();
-}