diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-11-04 20:12:48 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2003-11-04 20:12:48 +0000 |
commit | bdc960c82f8c742104ec59a85cdfb58a5c183a16 (patch) | |
tree | 142454a0345d13633a9020658caf228704daef6d | |
parent | 15bb534e0a20a3b0ef1d4fa328a05baf8ef27460 (diff) | |
download | gcc-bdc960c82f8c742104ec59a85cdfb58a5c183a16.zip gcc-bdc960c82f8c742104ec59a85cdfb58a5c183a16.tar.gz gcc-bdc960c82f8c742104ec59a85cdfb58a5c183a16.tar.bz2 |
* config/mips/_tilib.c: Use _ABI* in _MIPS_SIM tests.
From-SVN: r73257
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/_tilib.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cb0d1b5..7ea153c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-11-04 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * config/mips/_tilib.c: Use _ABI* in _MIPS_SIM tests. + 2003-11-04 DJ Delorie <dj@redhat.com> * config/v850/v850.md (mulhisi3): Expand the const_int case diff --git a/gcc/config/mips/_tilib.c b/gcc/config/mips/_tilib.c index 7118f84..25e326c 100644 --- a/gcc/config/mips/_tilib.c +++ b/gcc/config/mips/_tilib.c @@ -24,7 +24,7 @@ Boston, MA 02111-1307, USA. */ #include "coretypes.h" #include "tm.h" -#if _MIPS_SIM == 2 /* N32 */ || _MIPS_SIM == 3 /* 64 */ +#if _MIPS_SIM == _ABIN32 || _MIPS_SIM == _ABI64 typedef int TItype __attribute__ ((mode (TI))); typedef int DItype __attribute__ ((mode (DI))); |