diff options
author | Jan Brittenson <bson@gnu.org> | 1993-09-22 12:01:32 -0700 |
---|---|---|
committer | Jan Brittenson <bson@gnu.org> | 1993-09-22 12:01:32 -0700 |
commit | 11eff9c02439237024303a8697e042d98d709fce (patch) | |
tree | b10a4f5c4960e599743c2a400173d16e7be46c62 /gcc | |
parent | 262038b4bc6f2315d9789fa4e70f69df681ada42 (diff) | |
download | gcc-11eff9c02439237024303a8697e042d98d709fce.zip gcc-11eff9c02439237024303a8697e042d98d709fce.tar.gz gcc-11eff9c02439237024303a8697e042d98d709fce.tar.bz2 |
declare further functions needed for bc_emit_trampoline.
declare further functions needed for bc_emit_trampoline. Include
bytecode header files.
From-SVN: r5407
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/m68k.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index e11b745..1dc4f24 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -31,6 +31,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "output.h" #include "insn-attr.h" +/* Needed for bytecode function entry trampoline */ +#include "bytecode.h" +#include "bc-emit.h" + /* Needed for use_return_insn. */ #include "flags.h" @@ -2303,6 +2307,7 @@ strict_low_part_peephole_ok (mode, first_insn, target) /* Trampoline code for the function entry. */ extern struct bc_seg *trampoline; extern struct bc_seg *bytecode; +extern struct bc_sym *sym_lookup (); /* Emit the machine-code interface trampoline at the beginning of a byte coded function. The argument is a label name of the interpreter |