diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-10-20 18:37:22 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2003-10-20 18:37:22 +0000 |
commit | 27d54b2a6c18ef1ae50f1a5b432d590438445b90 (patch) | |
tree | 13e03635b2317c29fc21a0e32a7788d86cf843a7 /gcc | |
parent | 480feac0238a176178fb76a7ef2e0690ca74022c (diff) | |
download | gcc-27d54b2a6c18ef1ae50f1a5b432d590438445b90.zip gcc-27d54b2a6c18ef1ae50f1a5b432d590438445b90.tar.gz gcc-27d54b2a6c18ef1ae50f1a5b432d590438445b90.tar.bz2 |
ffi.c: Use _ABIN32, _ABIO32 instead of external _MIPS_SIM_NABI32, _MIPS_SIM_ABI32.
libffi:
* src/mips/ffi.c: Use _ABIN32, _ABIO32 instead of external
_MIPS_SIM_NABI32, _MIPS_SIM_ABI32.
libstdc++-v3:
* config/cpu/mips/atomicity.h (__atomic_add): Use _ABIO32 instead
of external _MIPS_SIM_ABI32.
boehm-gc:
* mips_sgi_mach_dep.s: Use _ABIO32 instead of external
_MIPS_SIM_ABI32.
gcc:
* config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Define _ABIO32.
Use it in _MIPS_SIM definition.
* config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Likewise.
From-SVN: r72713
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/mips.h | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5abaefd..6219b28 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2003-10-20 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Define _ABIO32. + Use it in _MIPS_SIM definition. + * config/mips/mips.h (CRT_CALL_STATIC_FUNCTION): Likewise. + 2003-10-20 Zack Weinberg <zack@codesourcery.com> * config/i386/i386.c (print_reg): Abort if REGNO (x) is a diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index de7286d..1785a14 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -81,7 +81,8 @@ Boston, MA 02111-1307, USA. */ } \ else \ { \ - builtin_define ("_MIPS_SIM=_MIPS_SIM_ABI32"); \ + builtin_define ("_ABIO32=1"); \ + builtin_define ("_MIPS_SIM=_ABIO32"); \ builtin_define ("_MIPS_SZLONG=32"); \ builtin_define ("_MIPS_SZPTR=32"); \ } \ diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 7af1026..1b51913 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3465,7 +3465,7 @@ while (0) we need to load our GP. We don't preserve $gp or $ra, since each init/fini chunk is supposed to initialize $gp, and crti/crtn already take care of preserving $ra and, when appropriate, $gp. */ -#if _MIPS_SIM == _MIPS_SIM_ABI32 +#if (defined _ABIO32 && _MIPS_SIM == _ABIO32) #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \ asm (SECTION_OP "\n\ .set noreorder\n\ |