diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-02 19:55:15 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-02 19:55:15 +0000 |
commit | 8663f89fb9cbea11929bd7c77f784db286292e58 (patch) | |
tree | 03388e96f61330924237139290a56806a364f1e2 | |
parent | 64f76a8e5bc1c9c148402f83e3a956a91630e41c (diff) | |
download | gcc-8663f89fb9cbea11929bd7c77f784db286292e58.tar.gz |
* mips/_tilib.c: Don't include tsystem.h or defaults.h. Don't
define LIBGCC2_WORDS_BIG_ENDIAN. Include coretypes.h and tm.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62284 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/_tilib.c | 8 |
2 files changed, 7 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c567d456615..da74c1b580e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * mips/_tilib.c: Don't include tsystem.h or defaults.h. Don't + define LIBGCC2_WORDS_BIG_ENDIAN. Include coretypes.h and tm.h. + 2003-02-02 Andreas Schwab <schwab@suse.de> * varasm.c (asm_output_aligned_bss): Declare as possibly unused. diff --git a/gcc/config/mips/_tilib.c b/gcc/config/mips/_tilib.c index 0a76f8ab857..7118f842588 100644 --- a/gcc/config/mips/_tilib.c +++ b/gcc/config/mips/_tilib.c @@ -21,12 +21,8 @@ Boston, MA 02111-1307, USA. */ #include "tconfig.h" -#include "tsystem.h" -#include "defaults.h" - -#ifndef LIBGCC2_WORDS_BIG_ENDIAN -#define LIBGCC2_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN -#endif +#include "coretypes.h" +#include "tm.h" #if _MIPS_SIM == 2 /* N32 */ || _MIPS_SIM == 3 /* 64 */ |