diff options
author | Richard Henderson <rth@redhat.com> | 2009-09-22 08:12:09 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2009-09-22 08:12:09 -0700 |
commit | 6eee506e2f0db40ff2d344c8cff9ebe7d0a6a458 (patch) | |
tree | 622babac1bae8508bd1fb0bd580d7a34871ab85f /gcc/config | |
parent | 0ef9304b2233e983ca1dc48ac22766fdd7a534c7 (diff) | |
download | gcc-6eee506e2f0db40ff2d344c8cff9ebe7d0a6a458.zip gcc-6eee506e2f0db40ff2d344c8cff9ebe7d0a6a458.tar.gz gcc-6eee506e2f0db40ff2d344c8cff9ebe7d0a6a458.tar.bz2 |
* config/avr/avr.h (TRAMPOLINE_TEMPLATE, INITIALIZE_TRAMPOLINE): Remove.
From-SVN: r151987
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/avr/avr.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index ff40939..53e20f9 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -722,16 +722,8 @@ fprintf (STREAM, "\t.skip %lu,0\n", (unsigned long)(N)) #define NO_DOLLAR_IN_LABEL 1 -#define TRAMPOLINE_TEMPLATE(FILE) \ - internal_error ("trampolines not supported") - #define TRAMPOLINE_SIZE 4 -#define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT) \ -{ \ - emit_move_insn (gen_rtx_MEM (HImode, plus_constant ((TRAMP), 2)), CXT); \ - emit_move_insn (gen_rtx_MEM (HImode, plus_constant ((TRAMP), 6)), FNADDR); \ -} /* Store in cc_status the expressions that the condition codes will describe after execution of an instruction whose pattern is EXP. |