diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2000-02-16 11:23:48 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2000-02-16 11:23:48 +0000 |
| commit | 9658fcaa619dbbdce7bcefd5bb28d3cd2f2880d2 (patch) | |
| tree | edf0f0555b3fa37be0859e2f10e253e71d2d72bf /gnu/usr.bin/egcs/arch | |
| parent | ce0bacce6a04d2c1c140f4a1060fa6cba5586546 (diff) | |
Add support of mipseb target.
Diffstat (limited to 'gnu/usr.bin/egcs/arch')
| -rw-r--r-- | gnu/usr.bin/egcs/arch/mips/tm.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/usr.bin/egcs/arch/mips/tm.h b/gnu/usr.bin/egcs/arch/mips/tm.h index 5b2c4dde299..5b86d152238 100644 --- a/gnu/usr.bin/egcs/arch/mips/tm.h +++ b/gnu/usr.bin/egcs/arch/mips/tm.h @@ -1,3 +1,11 @@ -/* $NetBSD: tm.h,v 1.2 1998/08/17 20:26:07 tv Exp $ */ +/* $NetBSD: tm.h,v 1.3 2000/02/16 11:23:49 tsutsui Exp $ */ + +#ifdef mipseb +#define TARGET_ENDIAN_DEFAULT MASK_BIG_ENDIAN +#else +#ifdef mipsel +#define TARGET_ENDIAN_DEFAULT 0 +#endif +#endif #include "mips/netbsd.h" |
