mirror of git://gcc.gnu.org/git/gcc.git
* include/private/gcconfig.h: Fix NetBSD/mips parameters.
From-SVN: r57479
This commit is contained in:
parent
58e60158ac
commit
179a9cafbe
|
|
@ -1,3 +1,7 @@
|
||||||
|
2002-09-24 Jason Thorpe <thorpej@wasabisystems.com>
|
||||||
|
|
||||||
|
* include/private/gcconfig.h: Fix NetBSD/mips parameters.
|
||||||
|
|
||||||
2002-08-23 Adam Megacz <adam@xwt.org>
|
2002-08-23 Adam Megacz <adam@xwt.org>
|
||||||
|
|
||||||
* Removed extraneous ABORT()
|
* Removed extraneous ABORT()
|
||||||
|
|
|
||||||
|
|
@ -95,8 +95,8 @@
|
||||||
# if defined(nec_ews) || defined(_nec_ews)
|
# if defined(nec_ews) || defined(_nec_ews)
|
||||||
# define EWS4800
|
# define EWS4800
|
||||||
# endif
|
# endif
|
||||||
# if !defined(LINUX) && !defined(EWS4800)
|
# if !defined(LINUX) && !defined(EWS4800) && !defined(NETBSD)
|
||||||
# if defined(ultrix) || defined(__ultrix) || defined(__NetBSD__)
|
# if defined(ultrix) || defined(__ultrix)
|
||||||
# define ULTRIX
|
# define ULTRIX
|
||||||
# else
|
# else
|
||||||
# if defined(_SYSTYPE_SVR4) || defined(SYSTYPE_SVR4) \
|
# if defined(_SYSTYPE_SVR4) || defined(SYSTYPE_SVR4) \
|
||||||
|
|
@ -107,9 +107,6 @@
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
# endif /* !LINUX */
|
# endif /* !LINUX */
|
||||||
# if defined(__NetBSD__) && defined(__MIPSEL__)
|
|
||||||
# undef ULTRIX
|
|
||||||
# endif
|
|
||||||
# define mach_type_known
|
# define mach_type_known
|
||||||
# endif
|
# endif
|
||||||
# if defined(sequent) && (defined(i386) || defined(__i386__))
|
# if defined(sequent) && (defined(i386) || defined(__i386__))
|
||||||
|
|
@ -1226,21 +1223,15 @@
|
||||||
# define DATAEND /* not needed */
|
# define DATAEND /* not needed */
|
||||||
# endif
|
# endif
|
||||||
# if defined(NETBSD)
|
# if defined(NETBSD)
|
||||||
/* This also checked for __MIPSEL__ . Why? NETBSD recognition */
|
|
||||||
/* should be handled at the top of the file. */
|
|
||||||
# define ALIGNMENT 4
|
|
||||||
# define OS_TYPE "NETBSD"
|
# define OS_TYPE "NETBSD"
|
||||||
|
# define ALIGNMENT 4
|
||||||
# define HEURISTIC2
|
# define HEURISTIC2
|
||||||
# define USE_GENERIC_PUSH_REGS
|
# define USE_GENERIC_PUSH_REGS
|
||||||
# ifdef __ELF__
|
extern int _fdata[];
|
||||||
extern int etext[];
|
# define DATASTART ((ptr_t)(_fdata))
|
||||||
# define DATASTART GC_data_start
|
extern int _end[];
|
||||||
# define NEED_FIND_LIMIT
|
# define DATAEND ((ptr_t)(_end))
|
||||||
# define DYNAMIC_LOADING
|
# define DYNAMIC_LOADING
|
||||||
# else
|
|
||||||
# define DATASTART ((ptr_t) 0x10000000)
|
|
||||||
# define STACKBOTTOM ((ptr_t) 0x7ffff000)
|
|
||||||
# endif /* _ELF_ */
|
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue