diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-20 08:55:07 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-20 08:55:07 +0000 |
commit | b54842d83370821e7c42b407205d8d92ba232448 (patch) | |
tree | 793698c32df0aae899d0ce491ac76885c5a17592 /gcc/emit-rtl.c | |
parent | 2c99f83652aecbc05718067cb5fa994930675df6 (diff) | |
download | gcc-b54842d83370821e7c42b407205d8d92ba232448.tar.gz |
* Makefile.in: Remove all bytecode support.
(OBJS): Make sure last entry is a real object file, not EXTRA_OBJS.
* emit-rtl.c: Remove all bytecode support.
* expr.c, expr.h function.c, integrate.c: Likewise.
* output.h, regclass.c, rtl.h, stmt.c, toplev.c: Likewise.
* tree.h, varasm.c: Likewise.
* bi-*, bc-*: Delete bytecode related files.
Bytecode suppors disappears :-)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17432 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index ad661245641..3a2ba295587 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -53,23 +53,7 @@ Boston, MA 02111-1307, USA. */ #include "real.h" #include "obstack.h" -#include "bytecode.h" #include "machmode.h" -#include "bc-opcode.h" -#include "bc-typecd.h" -#include "bc-optab.h" -#include "bc-emit.h" - -/* Opcode names */ -#ifdef BCDEBUG_PRINT_CODE -char *opcode_name[] = -{ -#include "bc-opname.h" - -"***END***" -}; -#endif - /* Commonly used modes. */ @@ -1451,11 +1435,8 @@ gen_label_rtx () { register rtx label; - label = (output_bytecode - ? gen_rtx_CODE_LABEL (VOIDmode, 0, bc_get_bytecode_label (), - NULL_RTX, 0, NULL_PTR) - : gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX, - NULL_RTX, label_num++, NULL_PTR)); + label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX, + NULL_RTX, label_num++, NULL_PTR); LABEL_NUSES (label) = 0; return label; @@ -2937,13 +2918,6 @@ emit_line_note (file, line) char *file; int line; { - if (output_bytecode) - { - /* FIXME: for now we do nothing, but eventually we will have to deal with - debugging information. */ - return 0; - } - emit_filename = file; emit_lineno = line; |