make this compile again under SH4

This commit is contained in:
uch 2001-04-22 17:37:55 +00:00
parent cfb5c7ed9f
commit 103b08ffa1
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.h,v 1.10 2001/04/22 00:34:02 thorpej Exp $ */
/* $NetBSD: pmap.h,v 1.11 2001/04/22 17:37:55 uch Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@ -361,7 +361,7 @@ extern int pmap_pg_g; /* do we support PG_G? */
/* XXX XXX XXX */
#ifdef SH4
#define TLBFLUSH() ((cacheflush(), tlbflush())
#define TLBFLUSH() (cacheflush(), tlbflush())
#else
#define TLBFLUSH() tlbflush()
#endif