diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 13:22:47 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 13:22:47 +0000 |
commit | ff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb (patch) | |
tree | ff34803fc67299c99a03991990dc09043bcac978 /gcc/config/m88k | |
parent | 71113c04645338ea5ddcc659f17aaa25d6e22811 (diff) | |
download | gcc-ff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb.tar.gz |
Change callers in config/m*/ to match:
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36620 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m88k')
-rw-r--r-- | gcc/config/m88k/dgux.h | 4 | ||||
-rw-r--r-- | gcc/config/m88k/m88k.c | 12 | ||||
-rw-r--r-- | gcc/config/m88k/m88k.h | 40 |
3 files changed, 28 insertions, 28 deletions
diff --git a/gcc/config/m88k/dgux.h b/gcc/config/m88k/dgux.h index 8c8f0b554d1..ca5fdd0690f 100644 --- a/gcc/config/m88k/dgux.h +++ b/gcc/config/m88k/dgux.h @@ -178,9 +178,9 @@ Boston, MA 02111-1307, USA. */ if (TARGET_SVR4) \ { \ if (TARGET_88110) \ - fprintf (FILE, "\t%s\t \"%s\"\n", VERSION_ASM_OP, "04.00"); \ + fprintf (FILE, "%s\"%s\"\n", VERSION_ASM_OP, "04.00"); \ else \ - fprintf (FILE, "\t%s\t \"%s\"\n", VERSION_ASM_OP, "03.00"); \ + fprintf (FILE, "%s\"%s\"\n", VERSION_ASM_OP, "03.00"); \ } \ if (write_symbols != NO_DEBUG && !TARGET_NOLEGEND) \ { \ diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index 86c92e75447..a30b350c454 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -955,7 +955,7 @@ output_short_branch_defs (stream) ASM_GENERATE_INTERNAL_LABEL (low, "L", CODE_LABEL_NUMBER (XEXP (sb_low, 0))); /* This will change as the assembler requirements become known. */ - fprintf (stream, "\t%s\t %s,%s-%s\n", + fprintf (stream, "%s%s,%s-%s\n", SET_ASM_OP, &name[1], &high[1], &low[1]); } if (sb_name || sb_high || sb_low) @@ -1571,7 +1571,7 @@ output_file_start (file, f_options, f_len, W_options, W_len) ASM_FIRST_LINE (file); if (TARGET_88110 && TARGET_SVR4) - fprintf (file, "\t%s\n", REQUIRES_88110_ASM_OP); + fprintf (file, "%s\n", REQUIRES_88110_ASM_OP); output_file_directive (file, main_input_filename); /* Switch to the data section so that the coffsem symbol and the gcc2_compiled. symbol aren't in the text section. */ @@ -1583,7 +1583,7 @@ output_file_start (file, f_options, f_len, W_options, W_len) char indent[256]; time_t now = time ((time_t *)0); - sprintf (indent, "]\"\n\t%s\t \"@(#)%s [", IDENT_ASM_OP, main_input_filename); + sprintf (indent, "]\"\n%s\"@(#)%s [", IDENT_ASM_OP, main_input_filename); fprintf (file, indent+3); pos = fprintf (file, "gcc %s, %.24s,", version_string, ctime (&now)); #if 1 @@ -1615,14 +1615,14 @@ output_ascii (file, opcode, max, p, size) register int num = 0; - fprintf (file, "\t%s\t \"", opcode); + fprintf (file, "%s\"", opcode); for (i = 0; i < size; i++) { register int c = p[i]; if (num > max) { - fprintf (file, "\"\n\t%s\t \"", opcode); + fprintf (file, "\"\n%s\"", opcode); num = 0; } @@ -2343,7 +2343,7 @@ output_tdesc (file, offset) tdesc_section (); - fprintf (file, "\t%s\t %d,%d", INT_ASM_OP, /* 8:0,22:(20 or 16),2:2 */ + fprintf (file, "%s%d,%d", INT_ASM_OP, /* 8:0,22:(20 or 16),2:2 */ (((xmask != 0) ? 20 : 16) << 2) | 2, flag_pic ? 2 : 1); diff --git a/gcc/config/m88k/m88k.h b/gcc/config/m88k/m88k.h index 46d83167b0e..5e7276f9b2a 100644 --- a/gcc/config/m88k/m88k.h +++ b/gcc/config/m88k/m88k.h @@ -1807,9 +1807,9 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS, if (TARGET_SVR4) \ { \ if (TARGET_88110) \ - fprintf (FILE, "\t%s\t \"%s\"\n", VERSION_ASM_OP, "04.00"); \ + fprintf (FILE, "%s\"%s\"\n", VERSION_ASM_OP, "04.00"); \ else \ - fprintf (FILE, "\t%s\t \"%s\"\n", VERSION_ASM_OP, "03.00"); \ + fprintf (FILE, "%s\"%s\"\n", VERSION_ASM_OP, "03.00"); \ } \ } while (0) @@ -1825,7 +1825,7 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS, #undef ASM_FILE_END #define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) \ - fprintf (FILE, "\t%s\t \"%s\"\n", FILE_ASM_OP, NAME) + fprintf (FILE, "%s\"%s\"\n", FILE_ASM_OP, NAME) #ifdef SDB_DEBUGGING_INFO #undef ASM_OUTPUT_SOURCE_LINE @@ -1905,7 +1905,7 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS, do { \ if (DECLARE_ASM_NAME) \ { \ - fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \ + fprintf (FILE, "%s", TYPE_ASM_OP); \ assemble_name (FILE, NAME); \ putc (',', FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "function"); \ @@ -1920,7 +1920,7 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS, do { \ if (DECLARE_ASM_NAME) \ { \ - fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \ + fprintf (FILE, "%s", TYPE_ASM_OP); \ assemble_name (FILE, NAME); \ putc (',', FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "object"); \ @@ -1929,7 +1929,7 @@ enum reg_class { NO_REGS, AP_REG, XRF_REGS, GENERAL_REGS, AGRF_REGS, if (!flag_inhibit_size_directive && DECL_SIZE (DECL)) \ { \ size_directive_output = 1; \ - fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, NAME); \ fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \ } \ @@ -1954,7 +1954,7 @@ do { \ && !size_directive_output) \ { \ size_directive_output = 1; \ - fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, name); \ fprintf (FILE, ",%d\n", int_size_in_bytes (TREE_TYPE (DECL))); \ } \ @@ -1973,7 +1973,7 @@ do { \ labelno++; \ ASM_GENERATE_INTERNAL_LABEL (label, "Lfe", labelno); \ ASM_OUTPUT_INTERNAL_LABEL (FILE, "Lfe", labelno); \ - fprintf (FILE, "\t%s\t ", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, (FNAME)); \ fprintf (FILE, ",%s-", &label[1]); \ assemble_name (FILE, (FNAME)); \ @@ -1991,7 +1991,7 @@ do { \ defined for reference from other files. */ #define ASM_GLOBALIZE_LABEL(FILE,NAME) \ do { \ - fprintf (FILE, "\t%s\t ", GLOBAL_ASM_OP); \ + fprintf (FILE, "%s", GLOBAL_ASM_OP); \ assemble_name (FILE, NAME); \ putc ('\n', FILE); \ } while (0) @@ -2018,7 +2018,7 @@ do { \ #undef ASM_OUTPUT_INTERNAL_LABEL #ifdef AS_BUG_DOT_LABELS /* The assembler requires a declaration of local. */ #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \ - fprintf (FILE, TARGET_SVR4 ? ".%s%d:\n\t%s\t .%s%d\n" : "@%s%d:\n", \ + fprintf (FILE, TARGET_SVR4 ? ".%s%d:\n%s.%s%d\n" : "@%s%d:\n", \ PREFIX, NUM, INTERNAL_ASM_OP, PREFIX, NUM) #else #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \ @@ -2078,7 +2078,7 @@ do { \ do { \ union { REAL_VALUE_TYPE d; long l[2]; } x; \ x.d = (VALUE); \ - fprintf (FILE, "\t%s\t 0x%.8lx, 0x%.8lx\n", INT_ASM_OP, \ + fprintf (FILE, "%s0x%.8lx, 0x%.8lx\n", INT_ASM_OP, \ (long) x.l[0], (long) x.l[1]); \ } while (0) @@ -2087,28 +2087,28 @@ do { \ do { \ int i; \ FLOAT_TO_INT_INTERNAL (VALUE, i); \ - fprintf (FILE, "\t%s\t 0x%.8x\n", INT_ASM_OP, i); \ + fprintf (FILE, "%s0x%.8x\n", INT_ASM_OP, i); \ } while (0) /* Likewise for `int', `short', and `char' constants. */ #define ASM_OUTPUT_INT(FILE,VALUE) \ -( fprintf (FILE, "\t%s\t ", INT_ASM_OP), \ +( fprintf (FILE, "%s", INT_ASM_OP), \ output_addr_const (FILE, (VALUE)), \ fprintf (FILE, "\n")) #define ASM_OUTPUT_SHORT(FILE,VALUE) \ -( fprintf (FILE, "\t%s\t ", SHORT_ASM_OP), \ +( fprintf (FILE, "%s", SHORT_ASM_OP), \ output_addr_const (FILE, (VALUE)), \ fprintf (FILE, "\n")) #define ASM_OUTPUT_CHAR(FILE,VALUE) \ -( fprintf (FILE, "\t%s\t ", CHAR_ASM_OP), \ +( fprintf (FILE, "%s", CHAR_ASM_OP), \ 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%s\t 0x%x\n", CHAR_ASM_OP, (VALUE)) + fprintf (FILE, "%s0x%x\n", CHAR_ASM_OP, (VALUE)) /* The single-byte pseudo-op is the default. Override svr[34].h. */ #undef ASM_BYTE_OP @@ -2165,7 +2165,7 @@ do { \ to a multiple of 2**LOG bytes. */ #define ASM_OUTPUT_ALIGN(FILE,LOG) \ if ((LOG) != 0) \ - fprintf (FILE, "\t%s\t %d\n", ALIGN_ASM_OP, 1<<(LOG)) + fprintf (FILE, "%s%d\n", ALIGN_ASM_OP, 1<<(LOG)) /* On the m88100, align the text address to half a cache boundary when it can only be reached by jumping. Pack code tightly when compiling @@ -2176,7 +2176,7 @@ do { \ /* Override svr[34].h. */ #undef ASM_OUTPUT_SKIP #define ASM_OUTPUT_SKIP(FILE,SIZE) \ - fprintf (FILE, "\t%s\t %u\n", SKIP_ASM_OP, (SIZE)) + fprintf (FILE, "%s%u\n", SKIP_ASM_OP, (SIZE)) /* Override svr4.h. */ #undef ASM_OUTPUT_EXTERNAL_LIBCALL @@ -2187,7 +2187,7 @@ do { \ #undef ASM_OUTPUT_COMMON #undef ASM_OUTPUT_ALIGNED_COMMON #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \ -( fprintf ((FILE), "\t%s\t ", \ +( fprintf ((FILE), "%s", \ ((SIZE) ? (SIZE) : 1) <= m88k_gp_threshold ? SCOMM_ASM_OP : COMMON_ASM_OP), \ assemble_name ((FILE), (NAME)), \ fprintf ((FILE), ",%u\n", (SIZE) ? (SIZE) : 1)) @@ -2197,7 +2197,7 @@ do { \ #undef ASM_OUTPUT_LOCAL #undef ASM_OUTPUT_ALIGNED_LOCAL #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \ -( fprintf ((FILE), "\t%s\t ", \ +( fprintf ((FILE), "%s", \ ((SIZE) ? (SIZE) : 1) <= m88k_gp_threshold ? SBSS_ASM_OP : BSS_ASM_OP), \ assemble_name ((FILE), (NAME)), \ fprintf ((FILE), ",%u,%d\n", (SIZE) ? (SIZE) : 1, (SIZE) <= 4 ? 4 : 8)) |