(bc_gen_rtx): Deleted.
authorRichard Stallman <rms@gnu.org>
Thu, 23 Sep 1993 18:57:49 +0000 (18:57 +0000)
committerRichard Stallman <rms@gnu.org>
Thu, 23 Sep 1993 18:57:49 +0000 (18:57 +0000)
From-SVN: r5440

gcc/bc-emit.c

index 29b85aa27b26fc3c405d0973b3f90aad0c4af5cf..77505c4ce6e913d0dd434b0be3f0f46301acf5c1 100644 (file)
@@ -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)