diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1999-08-20 16:37:57 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1999-08-20 16:37:57 +0000 |
commit | d59b60290a19250ffb3c30f8b7e8e14cd115f6cd (patch) | |
tree | c91343d55d0dfb3f8c5db395e880f597c9a8d6e7 | |
parent | a3aefd10dd1ce9ffe053430083defc7632914cd2 (diff) |
change MIPSE{B|L} to __MIPSE{B|L}__. -moj
-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 |