diff options
Diffstat (limited to 'gcc/config/romp/romp.h')
-rw-r--r-- | gcc/config/romp/romp.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc/config/romp/romp.h b/gcc/config/romp/romp.h index 2a1cd2b12a4..f9b7e9d8989 100644 --- a/gcc/config/romp/romp.h +++ b/gcc/config/romp/romp.h @@ -1404,30 +1404,6 @@ struct rt_cargs {int gregs, fregs; }; fprintf (FILE, "\t.long 0x%x\n", u_i_f.i);\ } while (0) -/* This is how to output an assembler line defining an `int' constant. */ - -#define ASM_OUTPUT_INT(FILE,VALUE) \ -( fprintf (FILE, "\t.long "), \ - output_addr_const (FILE, (VALUE)), \ - fprintf (FILE, "\n")) - -/* Likewise for `char' and `short' constants. */ - -#define ASM_OUTPUT_SHORT(FILE,VALUE) \ -( fprintf (FILE, "\t.short "), \ - output_addr_const (FILE, (VALUE)), \ - fprintf (FILE, "\n")) - -#define ASM_OUTPUT_CHAR(FILE,VALUE) \ -( fprintf (FILE, "\t.byte "), \ - output_addr_const (FILE, (VALUE)), \ - fprintf (FILE, "\n")) - -/* This is how to output an assembler line for a numeric constant byte. */ - -#define ASM_OUTPUT_BYTE(FILE,VALUE) \ - fprintf (FILE, "\t.byte 0x%x\n", (VALUE)) - /* This is how to output code to push a register on the stack. It need not be very fast code. */ |