diff options
author | Paul Brook <paul@codesourcery.com> | 2005-05-01 15:28:53 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2005-05-01 15:28:53 +0000 |
commit | 2a86f5154bf543a03a4939434b4b0a813c4b48ac (patch) | |
tree | 5f2da4acd08aad9e6f77eedc2d21e93f48290d02 /gcc/config/arm/linux-gas.h | |
parent | d8fcd0856b9f3c56dee6d9f7afd22b0a710ee923 (diff) | |
download | gcc-2a86f5154bf543a03a4939434b4b0a813c4b48ac.tar.gz |
arm.h (ARM_EMIT_TRAMPOLINE_CACHE_CLEAR): Define.
2005-01-05 Paul Brook <paul@codesourcery.com>
* config/arm/arm.h (ARM_EMIT_TRAMPOLINE_CACHE_CLEAR): Define.
(INITIALIZE_TRAMPOLINE): Use it.
* config/arm/linux-gas.h (INITIALIZE_TRAMPOLINE): Remove.
* config/arm/netbsd.h (INITIALIZE_TRAMPOLINE): Remove.
* config/arm/netbsd-elf.h (INITIALIZE_TRAMPOLINE): Remove.
From-SVN: r99068
Diffstat (limited to 'gcc/config/arm/linux-gas.h')
-rw-r--r-- | gcc/config/arm/linux-gas.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/config/arm/linux-gas.h b/gcc/config/arm/linux-gas.h index 85ae98a5eff..45afa6e185b 100644 --- a/gcc/config/arm/linux-gas.h +++ b/gcc/config/arm/linux-gas.h @@ -42,19 +42,6 @@ #undef WCHAR_TYPE_SIZE #define WCHAR_TYPE_SIZE BITS_PER_WORD -/* Emit code to set up a trampoline and synchronize the caches. */ -#undef INITIALIZE_TRAMPOLINE -#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \ -{ \ - emit_move_insn (gen_rtx_MEM (SImode, plus_constant ((TRAMP), 8)), \ - (CXT)); \ - emit_move_insn (gen_rtx_MEM (SImode, plus_constant ((TRAMP), 12)), \ - (FNADDR)); \ - emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__clear_cache"), \ - 0, VOIDmode, 2, TRAMP, Pmode, \ - plus_constant (TRAMP, TRAMPOLINE_SIZE), Pmode); \ -} - /* Clear the instruction cache from `beg' to `end'. This makes an inline system call to SYS_cacheflush. */ #define CLEAR_INSN_CACHE(BEG, END) \ |