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:
parent
73f895fcf6
commit
9668a15a6a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=224551
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user