diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-08 08:06:47 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-06-08 08:06:47 +0000 |
commit | dfdaa8f415a765b1588c9810f3b176c6e2e3312a (patch) | |
tree | e2aa3672d1755df9fcdc9446e05b9357ffa28288 /sys/arch | |
parent | a4d488c1226733945d719761df16d4970753cdba (diff) |
Provide type information for some symbols. Should fix vmstat -i.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/sparc64/locore.s | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/locore.s b/sys/arch/sparc64/sparc64/locore.s index 98708f0216b..803fc273af1 100644 --- a/sys/arch/sparc64/sparc64/locore.s +++ b/sys/arch/sparc64/sparc64/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.14 2002/05/23 23:11:15 deraadt Exp $ */ +/* $OpenBSD: locore.s,v 1.15 2002/06/08 08:06:46 art Exp $ */ /* $NetBSD: locore.s,v 1.137 2001/08/13 06:10:10 jdolecek Exp $ */ /* @@ -12043,7 +12043,12 @@ _C_LABEL(proc0paddr): POINTER _C_LABEL(u0) ! KVA of proc0 uarea /* interrupt counters XXX THESE BELONG ELSEWHERE (if anywhere) */ - .globl _C_LABEL(intrcnt), _C_LABEL(eintrcnt), _C_LABEL(intrnames), _C_LABEL(eintrnames) + .globl _C_LABEL(intrcnt), _C_LABEL(eintrcnt) + .globl _C_LABEL(intrnames), _C_LABEL(eintrnames) + OTYPE(intrcnt) + OTYPE(eintrcnt) + OTYPE(intrnames) + OTYPE(eintrnames) _C_LABEL(intrnames): .asciz "spur" .asciz "lev1" |