diff options
| author | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-07 16:12:43 +0000 |
|---|---|---|
| committer | thorpej <thorpej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-07 16:12:43 +0000 |
| commit | 9be53d3d8948040a15de826680c5df9f389fa7b7 (patch) | |
| tree | be6686ce4e9a1889c3d5a84ee83f0769a63e29df | |
| parent | a29114b3536caf57d274d29b20289a6df9d31239 (diff) | |
| download | ppe42-gcc-9be53d3d8948040a15de826680c5df9f389fa7b7.tar.gz ppe42-gcc-9be53d3d8948040a15de826680c5df9f389fa7b7.zip | |
* config/mips/netbsd.h (CACHE_FLUSH_FUNC): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54340 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 835ae073e7e..bc4bb441138 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 a0c38f6e37c..6269b7aad27 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 |

