]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
unwind-arm.c (_Unwind_GetDataRelBase, [...]): Move from here ...
authorPaul Brook <paul@codesourcery.com>
Wed, 15 Nov 2006 18:12:17 +0000 (18:12 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 15 Nov 2006 18:12:17 +0000 (18:12 +0000)
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

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

index a36144b6c60f07e474b177e60fab5b56fee8447f..d02d73306858c32a73bf51ff612827d62f6d81ac 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 0e750bf3e09fb221de9ea9ec3674a9a0461dc135..f0e733a11a77e473789c4a22dc67174a3666bfb3 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 9d2513b689794c1f2c20867adc79aad420735846..6b7e2ddcd2633327eb06de7c491a37e7192d99fa 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 ();
-}