aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/h8300/elf.h8
-rw-r--r--gcc/config/h8300/rtems.h12
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)