summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-03-21 00:34:59 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-03-21 00:34:59 +0000
commitfc088fded78828a4e98988f3983de2b316b4f07a (patch)
tree6d5f05c2577cb083eb33e5a9b2357fc2404f8905 /lang
parentUse `cpio' over `tar' in order to force ownership to a sane value. (diff)
Format changes to reduce diff from the FreeBSD/AXP source.
Notes
Notes: svn path=/head/; revision=40130
Diffstat (limited to 'lang')
-rw-r--r--lang/compaq-cc/files/include/machine/alpha_cpu.h27
1 files changed, 16 insertions, 11 deletions
diff --git a/lang/compaq-cc/files/include/machine/alpha_cpu.h b/lang/compaq-cc/files/include/machine/alpha_cpu.h
index d0aa91fe66f8..337c9772cb51 100644
--- a/lang/compaq-cc/files/include/machine/alpha_cpu.h
+++ b/lang/compaq-cc/files/include/machine/alpha_cpu.h
@@ -1,4 +1,5 @@
-/* $FreeBSD: /tmp/pcvs/ports/lang/compaq-cc/files/include/machine/Attic/alpha_cpu.h,v 1.1 2001-01-11 02:55:55 obrien Exp $ */
+/* $FreeBSD: /tmp/pcvs/ports/lang/compaq-cc/files/include/machine/Attic/alpha_cpu.h,v 1.2 2001-03-21 00:34:59 obrien Exp $ */
+/* From: FreeBSD: src/sys/alpha/include/alpha_cpu.h,v 1.7 1999/11/29 19:57:51 dfr */
/* From: NetBSD: alpha_cpu.h,v 1.15 1997/09/20 19:02:34 mjacob Exp */
/*
@@ -290,13 +291,15 @@ typedef unsigned long alpha_pt_entry_t;
/*
* Inlines for Alpha instructions normally inaccessible from C.
*/
+
+/* include Compaq Tru64 ASM macros */
#include <c_asm.h>
static __inline u_int64_t
alpha_amask(u_int64_t mask)
{
u_int64_t result;
- result = asm("amask %a0, %v0", mask);
+ result = asm("amask %a0, %v0", mask);
return result;
}
@@ -311,30 +314,32 @@ alpha_implver(void)
static __inline unsigned long
alpha_rpcc(void)
{
- u_int64_t result;
+ u_int64_t result;
result = asm("rpcc %v0");
- return result;
+ return result;
}
static __inline void
alpha_mb(void)
{
- asm("mb");
+ asm("mb");
}
static __inline void
alpha_wmb(void)
{
- /*
- * XXX dfr: NetBSD originally had mb instead of wmb for
- * alpha_wmb(). I'm not sure why so I'm leaving it alone. I
- * think it should be safe to use wmb though.
- */
- asm("mb");
+ /*
+ * XXX dfr: NetBSD originally had mb instead of wmb for
+ * alpha_wmb(). I'm not sure why so I'm leaving it alone. I
+ * think it should be safe to use wmb though.
+ */
+ asm("mb");
}
+
/*
* Inlines for OSF/1 PALcode operations.
*/
+
#ifdef notyet
static __inline void
alpha_pal_halt(void)