Date: Mon, 25 Jul 2011 20:10:01 +0000 (UTC) From: Andreas Tobler <andreast@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r224400 - head/sys/powerpc/aim Message-ID: <201107252010.p6PKA1ww075191@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: andreast Date: Mon Jul 25 20:10:01 2011 New Revision: 224400 URL: http://svn.freebsd.org/changeset/base/224400 Log: This a follow up commit from r224216 for powerpc 32-bit. Increase the storage size for sintrcnt/sintrnames to .long. Reviewed by: nwhitehorn Approved by: re (kib) Modified: head/sys/powerpc/aim/locore32.S Modified: head/sys/powerpc/aim/locore32.S ============================================================================== --- head/sys/powerpc/aim/locore32.S Mon Jul 25 20:09:09 2011 (r224399) +++ head/sys/powerpc/aim/locore32.S Mon Jul 25 20:10:01 2011 (r224400) @@ -91,13 +91,13 @@ GLOBAL(esym) 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 .text .globl btext
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107252010.p6PKA1ww075191>