From patchwork Mon Dec 14 11:09:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: nemesisofstate X-Patchwork-Id: 41085 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 162D0B6F08 for ; Mon, 14 Dec 2009 22:16:43 +1100 (EST) Received: from localhost ([127.0.0.1]:57037 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NK8ut-0000P2-Ss for incoming@patchwork.ozlabs.org; Mon, 14 Dec 2009 06:16:39 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NK8t4-0008O1-Gk for qemu-devel@nongnu.org; Mon, 14 Dec 2009 06:14:46 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NK8sy-0008Ls-LY for qemu-devel@nongnu.org; Mon, 14 Dec 2009 06:14:45 -0500 Received: from [199.232.76.173] (port=52024 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NK8sy-0008Lo-Gs for qemu-devel@nongnu.org; Mon, 14 Dec 2009 06:14:40 -0500 Received: from mail-ew0-f221.google.com ([209.85.219.221]:42433) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NK8sy-00020M-8P for qemu-devel@nongnu.org; Mon, 14 Dec 2009 06:14:40 -0500 Received: by ewy21 with SMTP id 21so1639361ewy.2 for ; Mon, 14 Dec 2009 03:14:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:subject:date :message-id:x-mailer; bh=xLMZJz9zunrxjVwaBbVjdMQmx+wdAfbZClRiZ1+K7zk=; b=SXhGVmrOZQCUab7PedP6fKIGefG65MtJnWLmvyrSn62PdoDCTmcrcMns1f+31GVGEz FHoKJBGM7pQajBn692Capd6EgGTVEN9cYGigeNST0H3FkL2ZprdgctqRaxsJCyu9K3GQ 1WlquBR47wwlfZzKmPWYpBWEEYNmWWwwUebc0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer; b=x0Pdg5RmGt5mR9HlyAwq6JRY8Ome/3bZowIjX75Xb0b+OzFn6cdVcxaVbiKnxTVleo 24vcm70X6GnqmOjSF24AygiOv+QpDIHuNzuRsP2SAJH8xh8e7V7ZyowktdT2a4A5t7AB RWyihVUgM0L990irSyGX0nI3S/BjSoFe1x0yc= Received: by 10.216.88.71 with SMTP id z49mr1955651wee.90.1260788958519; Mon, 14 Dec 2009 03:09:18 -0800 (PST) Received: from localhost (dhcp-144-254-20-173.cisco.com [144.254.20.173]) by mx.google.com with ESMTPS id 28sm4393064eye.1.2009.12.14.03.09.17 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 14 Dec 2009 03:09:17 -0800 (PST) From: nemesisofstate To: qemu-devel@nongnu.org Date: Mon, 14 Dec 2009 12:09:13 +0100 Message-Id: <1260788953-30794-1-git-send-email-nemesisofstate@gmail.com> X-Mailer: git-send-email 1.6.3.3 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH] correcting ARM CPSR register bit position comment X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: nemesis --- target-arm/cpu.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 4a1c53f..910604f 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -90,7 +90,7 @@ typedef struct CPUARMState { /* cpsr flag cache for faster execution */ uint32_t CF; /* 0 or 1 */ - uint32_t VF; /* V is the bit 31. All other bits are undefined */ + uint32_t VF; /* V is the bit 28. */ uint32_t NF; /* N is bit 31. All other bits are undefined. */ uint32_t ZF; /* Z set if zero. */ uint32_t QF; /* 0 or 1 */