diff options
author | Tom de Vries <tom@codesourcery.com> | 2017-11-12 16:07:19 +0000 |
---|---|---|
committer | Tom de Vries <vries@gcc.gnu.org> | 2017-11-12 16:07:19 +0000 |
commit | 180b5580343dca1d8c70b060aaf3206f533e03d8 (patch) | |
tree | f0ca3f02eb47a72cfa479593c326c344292ca996 /gcc | |
parent | b59b0914e42b985299e49f98f7ef06fbd641c9c8 (diff) | |
download | gcc-180b5580343dca1d8c70b060aaf3206f533e03d8.zip gcc-180b5580343dca1d8c70b060aaf3206f533e03d8.tar.gz gcc-180b5580343dca1d8c70b060aaf3206f533e03d8.tar.bz2 |
Remove semicolon after ASM_OUTPUT_ASCII
2017-11-12 Tom de Vries <tom@codesourcery.com>
* config/elfos.h (ASM_OUTPUT_ASCII): Remove semicolon after macro body.
From-SVN: r254665
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/elfos.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 30cbb29..2e46869 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2017-11-12 Tom de Vries <tom@codesourcery.com> + * config/elfos.h (ASM_OUTPUT_ASCII): Remove semicolon after macro body. + +2017-11-12 Tom de Vries <tom@codesourcery.com> + * config/cr16/cr16.h (ASM_OUTPUT_LABELREF): Remove semicolon after macro body. * config/powerpcspe/xcoff.h (ASM_OUTPUT_LABELREF): Same. diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index 0f79de7..8149c81 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -444,7 +444,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef ASM_OUTPUT_ASCII #define ASM_OUTPUT_ASCII(FILE, STR, LENGTH) \ - default_elf_asm_output_ascii ((FILE), (STR), (LENGTH)); + default_elf_asm_output_ascii ((FILE), (STR), (LENGTH)) /* Allow the use of the -frecord-gcc-switches switch via the elf_record_gcc_switches function defined in varasm.c. */ |