diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-11 21:09:37 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-11 21:09:37 +0000 |
commit | 567699810ce25cb8f6d88f0d2b57a52be2d97c98 (patch) | |
tree | 3943ca89968607260a483bab2be123a9fce1c32f /gcc/config/s390/linux.h | |
parent | 0c0a8ea5779b4c9790babb851705f4ba0ffd96de (diff) | |
download | gcc-567699810ce25cb8f6d88f0d2b57a52be2d97c98.tar.gz |
Coding style cleanup.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44811 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/s390/linux.h')
-rw-r--r-- | gcc/config/s390/linux.h | 6 |
1 files changed, 3 insertions, 3 deletions
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) |