PERFORCE change 132313 for review
Oleksandr Tymoshenko
gonzo at FreeBSD.org
Wed Jan 2 09:26:41 PST 2008
http://perforce.freebsd.org/chv.cgi?CH=132313
Change 132313 by gonzo at gonzo_jeeves on 2008/01/02 17:25:57
o endian.h is used in asm.h to define LWLO/LWHI/SWLO/SWHI
macroses depending on platform endianess, so hide
non-assembler part of it by checking for __ASSEMBLER__
built-in macro.
Affected files ...
.. //depot/projects/mips2-jnpr/src/sys/mips/include/endian.h#4 edit
Differences ...
==== //depot/projects/mips2-jnpr/src/sys/mips/include/endian.h#4 (text+ko) ====
@@ -60,6 +60,7 @@
#define _BYTE_ORDER _BIG_ENDIAN
#ifndef _LOCORE
+#ifndef __ASSEMBLER__
#include <sys/_types.h>
#if defined(__CC_SUPPORTS___INLINE) && defined(__GNUCLIKE_ASM)
@@ -104,6 +105,7 @@
#endif /* __CC_SUPPORTS___INLINE && __GNUCLIKE_ASM */
+#endif /* !__ASSEMBLER__ */
#endif /* !_LOCORE */
/*
More information about the p4-projects
mailing list