From 567699810ce25cb8f6d88f0d2b57a52be2d97c98 Mon Sep 17 00:00:00 2001 From: uweigand Date: Sat, 11 Aug 2001 21:09:37 +0000 Subject: Coding style cleanup. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44811 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/s390/linux.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/config/s390/linux.h') diff --git a/gcc/config/s390/linux.h b/gcc/config/s390/linux.h index 0e5d17976b8..31b657ce78d 100644 --- a/gcc/config/s390/linux.h +++ b/gcc/config/s390/linux.h @@ -154,7 +154,7 @@ do { fprintf ((FILE), "%s\t", ASM_QUAD); \ #undef ASM_OUTPUT_INT #define ASM_OUTPUT_INT(FILE, VALUE) \ do { fprintf (FILE, "%s\t", ASM_LONG); \ - output_addr_const (FILE,(VALUE)); \ + output_addr_const (FILE, (VALUE)); \ putc ('\n',FILE); \ } while (0) @@ -163,7 +163,7 @@ do { fprintf (FILE, "%s\t", ASM_LONG); \ #define ASM_OUTPUT_SHORT(FILE, VALUE) \ ( fprintf (FILE, "%s ", ASM_SHORT), \ - output_addr_const (FILE,(VALUE)), \ + output_addr_const (FILE, (VALUE)), \ putc ('\n',FILE)) #define ASM_OUTPUT_CHAR(FILE, VALUE) \ @@ -284,7 +284,7 @@ do { \ /* This is how to output a command to make the user-level label named NAME defined for reference from other files. */ -#define ASM_GLOBALIZE_LABEL(FILE,NAME) \ +#define ASM_GLOBALIZE_LABEL(FILE, NAME) \ (fputs (".globl ", FILE), assemble_name (FILE, NAME), fputs ("\n", FILE)) #define DBX_REGISTER_NUMBER(REGNO) (REGNO) -- cgit v1.2.1