Fix r224187: .word defines a 16-bit object and size_t is defined as

a 32-bit intergal. Use .long to define sintrcnt and sintrname.

Approved by:	re (blanket)
This commit is contained in:
Marcel Moolenaar 2011-07-31 18:26:47 +00:00
parent 73f895fcf6
commit 9668a15a6a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224551

View File

@ -790,12 +790,12 @@ GLOBAL(kernload)
GLOBAL(intrnames)
.space INTRCNT_COUNT * (MAXCOMLEN + 1) * 2
GLOBAL(sintrnames)
.word INTRCNT_COUNT * (MAXCOMLEN + 1) * 2
.long INTRCNT_COUNT * (MAXCOMLEN + 1) * 2
.align 4
GLOBAL(intrcnt)
.space INTRCNT_COUNT * 4 * 2
GLOBAL(sintrcnt)
.word INTRCNT_COUNT * 4 * 2
.long INTRCNT_COUNT * 4 * 2
#include <powerpc/booke/trap_subr.S>