summaryrefslogtreecommitdiff
path: root/gcc/config/m32r
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:22:47 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:22:47 +0000
commitff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb (patch)
treeff34803fc67299c99a03991990dc09043bcac978 /gcc/config/m32r
parent71113c04645338ea5ddcc659f17aaa25d6e22811 (diff)
downloadgcc-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/m32r')
-rw-r--r--gcc/config/m32r/m32r.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h
index 722998178d4..4f301a0f289 100644
--- a/gcc/config/m32r/m32r.h
+++ b/gcc/config/m32r/m32r.h
@@ -1816,7 +1816,7 @@ do { \
/* This is how to output an assembler line for a numeric constant byte. */
#define ASM_OUTPUT_BYTE(FILE, VALUE) \
- fprintf (FILE, "\t%s\t0x%x\n", ASM_BYTE_OP, (VALUE))
+ fprintf (FILE, "%s0x%x\n", ASM_BYTE_OP, (VALUE))
/* The assembler's parentheses characters. */
#define ASM_OPEN_PAREN "("
@@ -2026,9 +2026,9 @@ extern char m32r_punct_chars[];
{ \
if (! TARGET_SDATA_NONE \
&& (SIZE) > 0 && (SIZE) <= g_switch_value) \
- fprintf ((FILE), "\t%s\t", SCOMMON_ASM_OP); \
+ fprintf ((FILE), "%s", SCOMMON_ASM_OP); \
else \
- fprintf ((FILE), "\t%s\t", COMMON_ASM_OP); \
+ fprintf ((FILE), "%s", COMMON_ASM_OP); \
assemble_name ((FILE), (NAME)); \
fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT); \
} \