diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-27 01:37:21 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-27 01:37:21 +0000 |
commit | 04b2d6f5b25e1613c159ac5cce358bd990e2c4b7 (patch) | |
tree | 5cb7752c19b10ad4d664dddf40f390f1071bf60d /gcc | |
parent | 673bc773d3ee1f291529c89be2c8e03991f6e0f7 (diff) | |
download | gcc-04b2d6f5b25e1613c159ac5cce358bd990e2c4b7.zip gcc-04b2d6f5b25e1613c159ac5cce358bd990e2c4b7.tar.gz gcc-04b2d6f5b25e1613c159ac5cce358bd990e2c4b7.tar.bz2 |
(bc_gen_rtx): Call gen_rtx.
(bc_print_rtl): #if 0 the contents.
From-SVN: r5482
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/bc-emit.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc/bc-emit.c b/gcc/bc-emit.c index 77505c4..b63b840 100644 --- a/gcc/bc-emit.c +++ b/gcc/bc-emit.c @@ -826,13 +826,39 @@ bc_write_file (file) BC_WRITE_FILE (file); } + +/* Allocate a new bytecode rtx. + If you supply a null BC_LABEL, we generate one. */ + +rtx +bc_gen_rtx (label, offset, bc_label) + char *label; + int offset; + struct bc_label *bc_label; +{ + rtx r; + + if (bc_label == 0) + bc_label = (struct bc_label *) xmalloc (sizeof (struct bc_label)); + + r = gen_rtx (CODE_LABEL, VOIDmode, label, bc_label); + bc_label->offset = offset; + + return r; +} + + /* Print bytecode rtx */ void bc_print_rtl (fp, r) FILE *fp; rtx r; { +#if 0 /* This needs to get fixed to really work again. */ + /* BC_WRITE_RTL has a definition + that doesn't even make sense for this use. */ BC_WRITE_RTL (r, fp); +#endif } |