summaryrefslogtreecommitdiffstats
path: root/sys/ia64
diff options
context:
space:
mode:
authorattilio <attilio@FreeBSD.org>2011-07-19 12:41:57 +0000
committerattilio <attilio@FreeBSD.org>2011-07-19 12:41:57 +0000
commit1f74ad4e1b0cddf974863064f97781d560c019ad (patch)
tree0115e175321620d92d6421a71c0e0856807dc58f /sys/ia64
parenta73e834ebb2ee705e131501fdea63d05aadae527 (diff)
downloadFreeBSD-src-1f74ad4e1b0cddf974863064f97781d560c019ad.zip
FreeBSD-src-1f74ad4e1b0cddf974863064f97781d560c019ad.tar.gz
On 64 bit architectures size_t is 8 bytes, thus it should use an 8 bytes
storage. Fix the sintrcnt/sintrnames specification. No MFC is previewed for this patch. Reported, reviewed and tested by: marcel Approved by: re (kib)
Diffstat (limited to 'sys/ia64')
-rw-r--r--sys/ia64/ia64/locore.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ia64/ia64/locore.S b/sys/ia64/ia64/locore.S
index d4c1190..f79ca68 100644
--- a/sys/ia64/ia64/locore.S
+++ b/sys/ia64/ia64/locore.S
@@ -207,13 +207,13 @@ intr_n = 1
intr_n = intr_n + 1
.endr
EXPORT(sintrnames)
- .word INTRCNT_COUNT * INTRNAME_LEN
+ data8 INTRCNT_COUNT * INTRNAME_LEN
.align 8
EXPORT(intrcnt)
.fill INTRCNT_COUNT, 8, 0
EXPORT(sintrcnt)
- .word INTRCNT_COUNT
+ data8 INTRCNT_COUNT * 8
.text
// in0: image base
OpenPOWER on IntegriCloud