diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-06-03 00:51:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-06-03 00:51:37 +0000 |
commit | 1c8ec18b71dd89b6c61b9211095775de417bafe8 (patch) | |
tree | 237cc05becf7594b553158809cb8dfa686e28c2a /gcc | |
parent | 86cb04f698910d3aea883ea4334a0876894cf3d4 (diff) | |
download | gcc-1c8ec18b71dd89b6c61b9211095775de417bafe8.zip gcc-1c8ec18b71dd89b6c61b9211095775de417bafe8.tar.gz gcc-1c8ec18b71dd89b6c61b9211095775de417bafe8.tar.bz2 |
elf.h: Fix formatting.
* config/h8300/elf.h: Fix formatting.
* config/h8300/rtems.h: Likewise.
From-SVN: r54196
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/h8300/elf.h | 8 | ||||
-rw-r--r-- | gcc/config/h8300/rtems.h | 12 |
3 files changed, 17 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 317ab9d7..54b9ad9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-02 Kazu Hirata <kazu@cs.umass.edu> + + * config/h8300/elf.h: Fix formatting. + * config/h8300/rtems.h: Likewise. + 2002-06-03 Jason Thorpe <thorpej@wasabisystems.com> * config/rs6000/netbsd.h (DRAFT_V4_STRUCT_RET): Remove. diff --git a/gcc/config/h8300/elf.h b/gcc/config/h8300/elf.h index 81e320c..c7214d4 100644 --- a/gcc/config/h8300/elf.h +++ b/gcc/config/h8300/elf.h @@ -1,8 +1,10 @@ /* Target OS preprocessor built-ins. */ #define TARGET_OS_CPP_BUILTINS() \ - do { \ - builtin_define ("__ELF__"); \ - } while (0) + do \ + { \ + builtin_define ("__ELF__"); \ + } \ + while (0) /* Undefine some macros defined in h8300 that conflict with elfos.h . */ #undef SDB_DEBUGGING_INFO diff --git a/gcc/config/h8300/rtems.h b/gcc/config/h8300/rtems.h index 6b487cd..72fb091 100644 --- a/gcc/config/h8300/rtems.h +++ b/gcc/config/h8300/rtems.h @@ -21,8 +21,10 @@ Boston, MA 02111-1307, USA. */ /* Target OS preprocessor built-ins. */ #define TARGET_OS_CPP_BUILTINS() \ - do { \ - builtin_define_std ("h8300"); \ - builtin_define ("__rtems__"); \ - builtin_assert ("system=rtems"); \ - } while (0) + do \ + { \ + builtin_define_std ("h8300"); \ + builtin_define ("__rtems__"); \ + builtin_assert ("system=rtems"); \ + } \ + while (0) |