diff options
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 20a71f39f78..62559a93acf 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -52,6 +52,8 @@ AT&T C compiler. From the example below I would conclude the following: #include "flags.h" #include "insn-config.h" #include "reload.h" +#include "output.h" +#include "toplev.h" /* Mips systems use the SDB functions to dump out symbols, but do not supply usable syms.h include files. Which syms.h file to use is a @@ -171,7 +173,13 @@ static void sdbout_reg_parms PROTO((tree)); #endif #ifndef PUT_SDB_INT_VAL -#define PUT_SDB_INT_VAL(a) fprintf (asm_out_file, "\t.val\t%d%s", (a), SDB_DELIM) +#define PUT_SDB_INT_VAL(a) \ + do { \ + fputs ("\t.val\t", asm_out_file); \ + fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT)(a)); \ + fprintf (asm_out_file, "%s", SDB_DELIM); \ + } while (0) + #endif #ifndef PUT_SDB_VAL @@ -201,7 +209,12 @@ do { fprintf (asm_out_file, "\t.def\t"); \ #endif #ifndef PUT_SDB_SIZE -#define PUT_SDB_SIZE(a) fprintf(asm_out_file, "\t.size\t%d%s", a, SDB_DELIM) +#define PUT_SDB_SIZE(a) \ + do { \ + fputs ("\t.size\t", asm_out_file); \ + fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT)(a)); \ + fprintf (asm_out_file, "%s", SDB_DELIM); \ + } while(0) #endif #ifndef PUT_SDB_START_DIM |