From owner-svn-src-projects@FreeBSD.ORG Fri Mar 19 17:48:05 2010 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D728106564A; Fri, 19 Mar 2010 17:48:05 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F15348FC18; Fri, 19 Mar 2010 17:48:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o2JHm48E020812; Fri, 19 Mar 2010 17:48:04 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o2JHm4w4020810; Fri, 19 Mar 2010 17:48:04 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201003191748.o2JHm4w4020810@svn.freebsd.org> From: Nathan Whitehorn Date: Fri, 19 Mar 2010 17:48:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r205340 - projects/ppc64/sys/powerpc/aim X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Mar 2010 17:48:05 -0000 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;