]> gcc.gnu.org Git - gcc.git/commitdiff
Change callers in config/[b-g]*/ to match:
authorHans-Peter Nilsson <hp@gcc.gnu.org>
Mon, 25 Sep 2000 12:36:01 +0000 (12:36 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Mon, 25 Sep 2000 12:36:01 +0000 (12:36 +0000)
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.

From-SVN: r36617

gcc/config/c4x/c4x.h
gcc/config/d30v/d30v.h
gcc/config/fr30/fr30.h

index 93c3386be02a969823ae8db8442dde515b662aa5..3a6dae34e830d193977ea270e4245b0b00ab1911 100644 (file)
@@ -1987,7 +1987,7 @@ fini_section ()                                                   \
 {                                                              \
   if (in_section != in_fini)                                   \
     {                                                          \
-      fprintf (asm_out_file, "\t%s\n", FINI_SECTION_ASM_OP);   \
+      fprintf (asm_out_file, "%s\n", FINI_SECTION_ASM_OP);     \
       in_section = in_fini;                                    \
     }                                                          \
 }
index ef327268a48da06ce96b4b1a0c1389293ed12225..a093fc6a90bb8eb65441786d93e2e4b369c7df80 100644 (file)
@@ -4207,7 +4207,7 @@ do {                                                                      \
    to assemble a single byte containing the number VALUE.  */
 
 #define ASM_OUTPUT_BYTE(STREAM, VALUE) \
-  fprintf (STREAM, "\t%s %d\n", ASM_BYTE_OP, (int)(VALUE))
+  fprintf (STREAM, "%s%d\n", ASM_BYTE_OP, (int)(VALUE))
 
 /* A C string constant giving the pseudo-op to use for a sequence of
    single-byte constants.  If this macro is not defined, the default
index 36dd29362a04951559951af136f9e80627f9354a..20d8f55808bfdeffaae03d436faf2c4ef7cd1f5e 100644 (file)
@@ -1513,7 +1513,7 @@ do                                                                                \
 /* A C statement to output to the stdio stream STREAM an assembler instruction
    to assemble a single byte containing the number VALUE.  */
 #define ASM_OUTPUT_BYTE(STREAM, VALUE) \
-  fprintf (STREAM, "\t%s\t0x%x\n", ASM_BYTE_OP, (VALUE))
+  fprintf (STREAM, "%s0x%x\n", ASM_BYTE_OP, (VALUE))
 
 /* These macros are defined as C string constant, describing the syntax in the
    assembler for grouping arithmetic expressions.  The following definitions
This page took 0.079124 seconds and 5 git commands to generate.