Import final gcc2 snapshot (990109)
[official-gcc.git] / gcc / config / mips / sni-gas.h
blob5b3699820f378e9610e716a49ca38b2fbefe414a
1 /* Enable debugging. */
2 #define DBX_DEBUGGING_INFO
3 #define SDB_DEBUGGING_INFO
4 #define MIPS_DEBUGGING_INFO
6 #define DWARF_DEBUGGING_INFO
7 #undef PREFERRED_DEBUGGING_TYPE
8 #define PREFERRED_DEBUGGING_TYPE DWARF_DEBUG
10 /* We need to use .esize and .etype instead of .size and .type to
11 avoid conflicting with ELF directives. These are only recognized
12 by gas, anyhow, not the native assembler. */
13 #undef PUT_SDB_SIZE
14 #define PUT_SDB_SIZE(a) \
15 do { \
16 extern FILE *asm_out_text_file; \
17 fprintf (asm_out_text_file, "\t.esize\t%d;", (a)); \
18 } while (0)
20 #undef PUT_SDB_TYPE
21 #define PUT_SDB_TYPE(a) \
22 do { \
23 extern FILE *asm_out_text_file; \
24 fprintf (asm_out_text_file, "\t.etype\t0x%x;", (a)); \
25 } while (0)
28 /* This is how to equate one symbol to another symbol. The syntax used is
29 `SYM1=SYM2'. Note that this is different from the way equates are done
30 with most svr4 assemblers, where the syntax is `.set SYM1,SYM2'. */
32 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
33 do { fprintf ((FILE), "\t"); \
34 assemble_name (FILE, LABEL1); \
35 fprintf (FILE, " = "); \
36 assemble_name (FILE, LABEL2); \
37 fprintf (FILE, "\n"); \
38 } while (0)