From patchwork Thu Mar 24 15:58:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 88221 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 0CC49B6F85 for ; Fri, 25 Mar 2011 03:00:57 +1100 (EST) Received: from localhost ([127.0.0.1]:32795 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2mxx-0001Js-0a for incoming@patchwork.ozlabs.org; Thu, 24 Mar 2011 12:00:53 -0400 Received: from [140.186.70.92] (port=56296 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2mw7-0001Jf-BQ for qemu-devel@nongnu.org; Thu, 24 Mar 2011 11:59:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q2mw6-0005JG-7X for qemu-devel@nongnu.org; Thu, 24 Mar 2011 11:58:59 -0400 Received: from cantor.suse.de ([195.135.220.2]:33939 helo=mx1.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q2mw5-0005ID-TA for qemu-devel@nongnu.org; Thu, 24 Mar 2011 11:58:58 -0400 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 5F66594109; Thu, 24 Mar 2011 16:58:55 +0100 (CET) From: Alexander Graf To: QEMU-devel Developers Date: Thu, 24 Mar 2011 16:58:41 +0100 Message-Id: <1300982333-12802-6-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1300982333-12802-1-git-send-email-agraf@suse.de> References: <1300982333-12802-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.2 Cc: Aurelien Jarno , Richard Henderson Subject: [Qemu-devel] [PATCH 05/17] s390x: enable CPU_QuadU 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: Ulrich Hecht S390x uses the QuadU type, so let's enable it. Signed-off-by: Ulrich Hecht --- cpu-all.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpu-all.h b/cpu-all.h index 87b0f86..5a26d7a 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -138,7 +138,7 @@ typedef union { uint64_t ll; } CPU_DoubleU; -#ifdef TARGET_SPARC +#if defined(TARGET_SPARC) || defined(TARGET_S390X) typedef union { float128 q; #if defined(HOST_WORDS_BIGENDIAN) \