diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-17 12:40:03 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-17 12:40:03 -0700 |
commit | 32fa4d4a5d61299e741e147e46580cef298ad639 (patch) | |
tree | 0fb42c8ebce90e3628ed5f9149054f7ce9b6893a /gcc | |
parent | 93ee12c4cf57d66c4e2e30dabc01783366c0134f (diff) | |
download | gcc-32fa4d4a5d61299e741e147e46580cef298ad639.zip gcc-32fa4d4a5d61299e741e147e46580cef298ad639.tar.gz gcc-32fa4d4a5d61299e741e147e46580cef298ad639.tar.bz2 |
elf.h, [...]: Fix typos last change.
* config/mips/elf.h, config/mips/elf64.h, config/mips/netbsd.h,
config/mips/openbsd.h: Fix typos last change.
From-SVN: r44977
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/elf.h | 12 | ||||
-rw-r--r-- | gcc/config/mips/elf64.h | 12 | ||||
-rw-r--r-- | gcc/config/mips/netbsd.h | 12 | ||||
-rw-r--r-- | gcc/config/mips/openbsd.h | 12 |
5 files changed, 29 insertions, 24 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 586dc5f..a647050 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-17 Richard Henderson <rth@redhat.com> + + * config/mips/elf.h, config/mips/elf64.h, config/mips/netbsd.h, + config/mips/openbsd.h: Fix typos last change. + 2001-08-17 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> * doc/invoke.texi (Optimize Options): The default for diff --git a/gcc/config/mips/elf.h b/gcc/config/mips/elf.h index 7408704..4b2e605 100644 --- a/gcc/config/mips/elf.h +++ b/gcc/config/mips/elf.h @@ -65,12 +65,12 @@ do { \ switching, then we need a custom TARGET_ASM_NAMED_SECTION too. */ #undef TEXT_SECTION -#define TEXT_SECTION() -do { - if (TARGET_FILE_SWITCHING) - abort (); - fputs (TEXT_SECTION_ASM_OP, asm_out_file); - fputc ('\n', asm_out_file); +#define TEXT_SECTION() \ +do { \ + if (TARGET_FILE_SWITCHING) \ + abort (); \ + fputs (TEXT_SECTION_ASM_OP, asm_out_file); \ + fputc ('\n', asm_out_file); \ } while (0) /* The following macro defines the format used to output the second diff --git a/gcc/config/mips/elf64.h b/gcc/config/mips/elf64.h index c218c37..570e01f 100644 --- a/gcc/config/mips/elf64.h +++ b/gcc/config/mips/elf64.h @@ -82,12 +82,12 @@ do { \ switching, then we need a custom TARGET_ASM_NAMED_SECTION too. */ #undef TEXT_SECTION -#define TEXT_SECTION() -do { - if (TARGET_FILE_SWITCHING) - abort (); - fputs (TEXT_SECTION_ASM_OP, asm_out_file); - fputc ('\n', asm_out_file); +#define TEXT_SECTION() \ +do { \ + if (TARGET_FILE_SWITCHING) \ + abort (); \ + fputs (TEXT_SECTION_ASM_OP, asm_out_file); \ + fputc ('\n', asm_out_file); \ } while (0) /* The following macro defines the format used to output the second diff --git a/gcc/config/mips/netbsd.h b/gcc/config/mips/netbsd.h index cdb8037..1458a82 100644 --- a/gcc/config/mips/netbsd.h +++ b/gcc/config/mips/netbsd.h @@ -210,12 +210,12 @@ do { \ TARGET_ASM_NAMED_SECTION too. */ #undef TEXT_SECTION -#define TEXT_SECTION() -do { - if (TARGET_FILE_SWITCHING) - abort (); - fputs (TEXT_SECTION_ASM_OP, asm_out_file); - fputc ('\n', asm_out_file); +#define TEXT_SECTION() \ +do { \ + if (TARGET_FILE_SWITCHING) \ + abort (); \ + fputs (TEXT_SECTION_ASM_OP, asm_out_file); \ + fputc ('\n', asm_out_file); \ } while (0) /* Since gas and gld are standard on NetBSD, we don't need these */ diff --git a/gcc/config/mips/openbsd.h b/gcc/config/mips/openbsd.h index 886c229..5fc062b 100644 --- a/gcc/config/mips/openbsd.h +++ b/gcc/config/mips/openbsd.h @@ -112,12 +112,12 @@ Boston, MA 02111-1307, USA. */ TARGET_ASM_NAMED_SECTION too. */ #undef TEXT_SECTION -#define TEXT_SECTION() -do { - if (TARGET_FILE_SWITCHING) - abort (); - fputs (TEXT_SECTION_ASM_OP, asm_out_file); - fputc ('\n', asm_out_file); +#define TEXT_SECTION() \ +do { \ + if (TARGET_FILE_SWITCHING) \ + abort (); \ + fputs (TEXT_SECTION_ASM_OP, asm_out_file); \ + fputc ('\n', asm_out_file); \ } while (0) /* collect2 support (Macros for initialization). */ |