2006-11-15 Paul Brook <paul@codesourcery.com>
authorpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 15 Nov 2006 18:12:17 +0000 (18:12 +0000)
committerpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 15 Nov 2006 18:12:17 +0000 (18:12 +0000)
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

gcc/ChangeLog
gcc/config/arm/pr-support.c
gcc/config/arm/unwind-arm.c

index a36144b..d02d733 100644 (file)
@@ -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
index 0e750bf..f0e733a 100644 (file)
@@ -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 ();
+}
index 9d2513b..6b7e2dd 100644 (file)
@@ -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 ();
-}