svn commit: r205340 - projects/ppc64/sys/powerpc/aim
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Fri Mar 19 17:48:05 UTC 2010
Author: nwhitehorn
Date: Fri Mar 19 17:48:04 2010
New Revision: 205340
URL: http://svn.freebsd.org/changeset/base/205340
Log:
Less than is different than less than or equal to. Fascinating.
Modified:
projects/ppc64/sys/powerpc/aim/trap_subr64.S
Modified: projects/ppc64/sys/powerpc/aim/trap_subr64.S
==============================================================================
--- projects/ppc64/sys/powerpc/aim/trap_subr64.S Fri Mar 19 17:05:41 2010 (r205339)
+++ projects/ppc64/sys/powerpc/aim/trap_subr64.S Fri Mar 19 17:48:04 2010 (r205340)
@@ -68,7 +68,7 @@ instslb:
nslb:
addi %r28, %r28, 16; /* Advance */
addi %r29, %r29, 1;
- cmpli 0, %r29, 63; /* Repeat if we are not at the end */
+ cmpli 0, %r29, 64; /* Repeat if we are not at the end */
blt instslb;
blr;
More information about the svn-src-projects
mailing list