From cd49c7be0f05ac20ec76176f921936b00e1b2e8f Mon Sep 17 00:00:00 2001 From: John Bowler Date: Thu, 22 Sep 2005 19:40:39 +0000 Subject: gcc_3.4.4: updated thumb patches The four previous thumb related patch files have been combined into one and simplified. Additional problems with call_via_rX functions being called via the PLT have been fixed (the functions can no longer be called this way - they are hidden). Unnecessary adds of exports of these functions from libgcc have been removed. --- packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch (limited to 'packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch') diff --git a/packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch b/packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch deleted file mode 100644 index 57ccb85361..0000000000 --- a/packages/gcc/gcc-3.4.4/gcc34-thumb-clearinsn.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- gcc-3.4.4/gcc/config/arm/linux-gas.h.orig 2005-08-09 08:10:22.809195204 -0700 -+++ gcc-3.4.4/gcc/config/arm/linux-gas.h 2005-08-09 08:13:06.539498102 -0700 -@@ -56,6 +56,7 @@ - - /* Clear the instruction cache from `beg' to `end'. This makes an - inline system call to SYS_cacheflush. */ -+#if !defined(__thumb__) - #define CLEAR_INSN_CACHE(BEG, END) \ - { \ - register unsigned long _beg __asm ("a1") = (unsigned long) (BEG); \ -@@ -65,3 +66,15 @@ - : "=r" (_beg) \ - : "0" (_beg), "r" (_end), "r" (_flg)); \ - } -+#else -+#define CLEAR_INSN_CACHE(BEG, END) \ -+{ \ -+ register unsigned long _beg __asm ("a1") = (unsigned long) (BEG); \ -+ register unsigned long _end __asm ("a2") = (unsigned long) (END); \ -+ register unsigned long _flg __asm ("a3") = 0; \ -+ register unsigned long _swi __asm ("r7") = 0x9f0002; \ -+ __asm __volatile ("swi 0 @ sys_cacheflush" \ -+ : "=r" (_beg) \ -+ : "0" (_beg), "r" (_end), "r" (_flg), "r" (_swi)); \ -+} -+#endif -- cgit v1.2.3