diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-23 18:57:49 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-23 18:57:49 +0000 |
commit | 50560a2954e5e38f533f2b93e0d4c6751ce16250 (patch) | |
tree | af1d7f75b2e3d4ca47e85dcee8c3c463e0e647b4 /gcc | |
parent | 1f57f40b33ed91d969d058a9cb0ff46ebfd76a55 (diff) | |
download | gcc-50560a2954e5e38f533f2b93e0d4c6751ce16250.zip gcc-50560a2954e5e38f533f2b93e0d4c6751ce16250.tar.gz gcc-50560a2954e5e38f533f2b93e0d4c6751ce16250.tar.bz2 |
(bc_gen_rtx): Deleted.
From-SVN: r5440
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/bc-emit.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c index 29b85aa..77505c4 100644 --- a/gcc/bc-emit.c +++ b/gcc/bc-emit.c @@ -826,24 +826,6 @@ bc_write_file (file) BC_WRITE_FILE (file); } - -/* Allocate a new bytecode rtx. */ -rtx -bc_gen_rtx (label, offset, bc_label) - char *label; - int offset; - struct bc_label *bc_label; -{ - rtx r; - - r = (rtx) obstack_alloc (rtl_obstack, sizeof (struct rtx_def)); - BYTECODE_LABEL(r) = label; /* Do we need to copy here? */ - BYTECODE_OFFSET(r) = offset; - BYTECODE_BC_LABEL(r) = bc_label; - return r; -} - - /* Print bytecode rtx */ void bc_print_rtl (fp, r) |