diff options
-rw-r--r-- | sys/arch/pmax/include/asm.h | 6 | ||||
-rw-r--r-- | sys/arch/pmax/include/machAsmDefs.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/pmax/include/asm.h b/sys/arch/pmax/include/asm.h index 56d58cd16b8..61f4a62374b 100644 --- a/sys/arch/pmax/include/asm.h +++ b/sys/arch/pmax/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.4 1997/06/10 14:18:56 graichen Exp $ */ +/* $OpenBSD: asm.h,v 1.5 1999/08/20 16:37:56 maja Exp $ */ /* * Copyright (c) 1992, 1993 @@ -64,13 +64,13 @@ /* * Define how to access unaligned data word */ -#ifdef MIPSEL +#ifdef __MIPSEL__ #define LWLO lwl #define LWHI lwr #define SWLO swl #define SWHI swr #endif -#ifdef MIPSEB +#ifdef __MIPSEB__ #define LWLO lwr #define LWHI lwl #define SWLO swr diff --git a/sys/arch/pmax/include/machAsmDefs.h b/sys/arch/pmax/include/machAsmDefs.h index cbe242708d2..79b0796b1ba 100644 --- a/sys/arch/pmax/include/machAsmDefs.h +++ b/sys/arch/pmax/include/machAsmDefs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machAsmDefs.h,v 1.4 1996/10/29 17:02:39 graichen Exp $ */ +/* $OpenBSD: machAsmDefs.h,v 1.5 1999/08/20 16:37:56 maja Exp $ */ /* * Copyright (c) 1992, 1993 @@ -62,13 +62,13 @@ /* * Define how to access unaligned data word */ -#ifdef MIPSEL +#ifdef __MIPSEL__ #define LWLO lwl #define LWHI lwr #define SWLO swl #define SWHI swr #endif -#ifdef MIPSEB +#ifdef __MIPSEB__ #define LWLO lwr #define LWHI lwl #define SWLO swr |