From owner-svn-src-all@FreeBSD.ORG Sun Oct 11 16:44:59 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B8031065672; Sun, 11 Oct 2009 16:44:58 +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 541988FC17; Sun, 11 Oct 2009 16:44:58 +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 n9BGiwbT016520; Sun, 11 Oct 2009 16:44:58 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n9BGiwgj016518; Sun, 11 Oct 2009 16:44:58 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200910111644.n9BGiwgj016518@svn.freebsd.org> From: Nathan Whitehorn Date: Sun, 11 Oct 2009 16:44:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r197962 - head/sys/powerpc/aim X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Oct 2009 16:44:59 -0000 Author: nwhitehorn Date: Sun Oct 11 16:44:58 2009 New Revision: 197962 URL: http://svn.freebsd.org/changeset/base/197962 Log: Correct another typo. Actually save the condition register instead of overwriting r12 by mistake. Modified: head/sys/powerpc/aim/swtch.S Modified: head/sys/powerpc/aim/swtch.S ============================================================================== --- head/sys/powerpc/aim/swtch.S Sun Oct 11 16:41:39 2009 (r197961) +++ head/sys/powerpc/aim/swtch.S Sun Oct 11 16:44:58 2009 (r197962) @@ -171,7 +171,7 @@ ENTRY(savectx) mr %r12,%r2 stmw %r12,PCB_CONTEXT(%r3) /* Save the non-volatile GP regs */ mfcr %r4 /* Save the condition register */ - stw %r4,PCB_CONTEXT(%r3) + stw %r4,PCB_CR(%r3) blr /*