diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mips/netbsd.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 835ae07..bc4bb44 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-06-07 Jason Thorpe <thorpej@wasabisystems.com> + + * config/mips/netbsd.h (CACHE_FLUSH_FUNC): Define. + 2002-06-07 Jason Merrill <jason@redhat.com> * cppexp.c (num_equality_op): Use a temporary variable to work diff --git a/gcc/config/mips/netbsd.h b/gcc/config/mips/netbsd.h index a0c38f6..6269b7a 100644 --- a/gcc/config/mips/netbsd.h +++ b/gcc/config/mips/netbsd.h @@ -181,6 +181,12 @@ Boston, MA 02111-1307, USA. */ #undef SET_ASM_OP +/* NetBSD hasn't historically provided _flush_cache(), but rather + _cacheflush(), which takes the same arguments as the former. */ +#undef CACHE_FLUSH_FUNC +#define CACHE_FLUSH_FUNC "_cacheflush" + + /* Make gcc agree with <machine/ansi.h> */ #undef WCHAR_TYPE |