* include/private/gcconfig.h: Handle mips64-linux n64 ABI.

From-SVN: r127506
This commit is contained in:
David Daney 2007-08-15 06:42:16 +00:00 committed by David Daney
parent c6ecce8c1b
commit f2b6bf20c6
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-08-14 David Daney <ddaney@avtrex.com>
* include/private/gcconfig.h: Handle mips64-linux n64 ABI.
2007-07-05 H.J. Lu <hongjiu.lu@intel.com>
* aclocal.m4: Regenerated.

View File

@ -1369,7 +1369,12 @@
# define DATAEND (_end)
extern int __data_start[];
# define DATASTART ((ptr_t)(__data_start))
# define ALIGNMENT 4
# ifdef _MIPS_SZPTR
# define CPP_WORDSZ _MIPS_SZPTR
# define ALIGNMENT (_MIPS_SZPTR/8)
# else
# define ALIGNMENT 4
# endif
# define USE_GENERIC_PUSH_REGS
# if __GLIBC__ == 2 && __GLIBC_MINOR__ >= 2 || __GLIBC__ > 2
# define LINUX_STACKBOTTOM