Commit 1c8ec18b by Kazu Hirata Committed by Kazu Hirata

elf.h: Fix formatting.

	* config/h8300/elf.h: Fix formatting.
	* config/h8300/rtems.h: Likewise.

From-SVN: r54196
parent 86cb04f6
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> 2002-06-03 Jason Thorpe <thorpej@wasabisystems.com>
* config/rs6000/netbsd.h (DRAFT_V4_STRUCT_RET): Remove. * config/rs6000/netbsd.h (DRAFT_V4_STRUCT_RET): Remove.
......
/* Target OS preprocessor built-ins. */ /* Target OS preprocessor built-ins. */
#define TARGET_OS_CPP_BUILTINS() \ #define TARGET_OS_CPP_BUILTINS() \
do { \ do \
builtin_define ("__ELF__"); \ { \
} while (0) builtin_define ("__ELF__"); \
} \
while (0)
/* Undefine some macros defined in h8300 that conflict with elfos.h . */ /* Undefine some macros defined in h8300 that conflict with elfos.h . */
#undef SDB_DEBUGGING_INFO #undef SDB_DEBUGGING_INFO
......
...@@ -21,8 +21,10 @@ Boston, MA 02111-1307, USA. */ ...@@ -21,8 +21,10 @@ Boston, MA 02111-1307, USA. */
/* Target OS preprocessor built-ins. */ /* Target OS preprocessor built-ins. */
#define TARGET_OS_CPP_BUILTINS() \ #define TARGET_OS_CPP_BUILTINS() \
do { \ do \
builtin_define_std ("h8300"); \ { \
builtin_define ("__rtems__"); \ builtin_define_std ("h8300"); \
builtin_assert ("system=rtems"); \ builtin_define ("__rtems__"); \
} while (0) builtin_assert ("system=rtems"); \
} \
while (0)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment