diff options
author | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 13:03:20 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 13:03:20 +0000 |
commit | f0ca81d2b05375dec1b891d7d7c6e84d916ddac4 (patch) | |
tree | 457c93d2e660e4af8032f8d4f333fc2d67a3d3f4 /gcc/config/i370 | |
parent | 614cd6b03fb00ebfbec121b6fead9902a5b3c17e (diff) | |
download | gcc-f0ca81d2b05375dec1b891d7d7c6e84d916ddac4.zip gcc-f0ca81d2b05375dec1b891d7d7c6e84d916ddac4.tar.gz gcc-f0ca81d2b05375dec1b891d7d7c6e84d916ddac4.tar.bz2 |
Change callers in config/[h-l]*/ to match:
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
From-SVN: r36619
Diffstat (limited to 'gcc/config/i370')
-rw-r--r-- | gcc/config/i370/i370.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i370/i370.h b/gcc/config/i370/i370.h index 1c878ad..8967d0b 100644 --- a/gcc/config/i370/i370.h +++ b/gcc/config/i370/i370.h @@ -2048,13 +2048,13 @@ abort(); \ #define ASM_OUTPUT_CHAR(FILE,VALUE) \ -( fprintf (FILE, "%s ", ASM_BYTE_OP), \ +( fprintf (FILE, "%s", ASM_BYTE_OP), \ output_addr_const (FILE, (VALUE)), \ putc ('\n', FILE)) /* This is how to output an assembler line for a numeric constant byte. */ #define ASM_OUTPUT_BYTE(FILE,VALUE) \ - fprintf ((FILE), "%s 0x%x\n", ASM_BYTE_OP, (VALUE)) + fprintf ((FILE), "%s0x%x\n", ASM_BYTE_OP, (VALUE)) /* This is how to output the definition of a user-level label named NAME, such as the label on a static function or variable NAME. */ |