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
@ -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…
x
Reference in New Issue
Block a user