From patchwork Fri Sep 28 01:10:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 187674 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A3B702C007B for ; Fri, 28 Sep 2012 11:11:13 +1000 (EST) Received: from localhost ([::1]:54251 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THP6l-0003Zx-My for incoming@patchwork.ozlabs.org; Thu, 27 Sep 2012 21:11:11 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48746) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THP6d-0003Zh-3l for qemu-devel@nongnu.org; Thu, 27 Sep 2012 21:11:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1THP6c-0002pk-9N for qemu-devel@nongnu.org; Thu, 27 Sep 2012 21:11:03 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:50220) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1THP6c-0002pe-3D for qemu-devel@nongnu.org; Thu, 27 Sep 2012 21:11:02 -0400 Received: by pbbrp2 with SMTP id rp2so4396540pbb.4 for ; Thu, 27 Sep 2012 18:11:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=NzSO/kvXYzKWBkFFZLIhMnl0GrR2IBDxnf5VVppbayY=; b=k0VYOPzj23yAm1gm/RS4n2aKpnDIFc0Sf/G0xxYh+3BhfTRFpe+7FIc9GI3Gf3c+pY HFuw8pE2BaUiD7U5zCYcfJuuDTEOyMFkhbby1YVQcRNAOpflHYnhz/r8Vknxt38UU3LC Ur/Rh80dzIrSpdftR+nb6WvcRLzFh3X1Ze+uAvzjZRalgIO7qJXYr5jSfJiXfjdq/s88 z1yywfRGO2EXu3Y6YNxPEv5Kpduq4ND+QBImTZTylcVYNpl8ThithptGoD6dY/+h+4YI fmX6oHErYRDT4Bn3FcvzYG8yBcNwvKY7qo3jWM6RnxTt+rdDzQlIox/2Bp3llN1Y5A7W 7jCA== Received: by 10.68.204.66 with SMTP id kw2mr15977835pbc.110.1348794661421; Thu, 27 Sep 2012 18:11:01 -0700 (PDT) Received: from anchor.twiddle.home.com ([173.160.232.49]) by mx.google.com with ESMTPS id ka4sm4660194pbc.61.2012.09.27.18.11.00 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 27 Sep 2012 18:11:00 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 27 Sep 2012 18:10:57 -0700 Message-Id: <1348794657-28492-1-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.7.11.4 In-Reply-To: <1348785610-23418-1-git-send-email-rth@twiddle.net> References: <1348785610-23418-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.45 Cc: Alexander Graf Subject: [Qemu-devel] [PATCH 134/147] target-s390: Implement LCDFR X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- target-s390x/insn-data.def | 1 + 1 file changed, 1 insertion(+) diff --git a/target-s390x/insn-data.def b/target-s390x/insn-data.def index b023911..6e92790 100644 --- a/target-s390x/insn-data.def +++ b/target-s390x/insn-data.def @@ -356,6 +356,7 @@ C(0xb303, LCEBR, RRE, Z, 0, e2, new, e1, negf32, f32) C(0xb313, LCDBR, RRE, Z, 0, f2_o, f1, 0, negf64, f64) C(0xb343, LCXBR, RRE, Z, 0, x2_o, x1, 0, negf128, f128) + C(0xb373, LCDFR, RRE, FPSSH, 0, f2_o, f1, 0, negf64, 0) /* LOAD HALFWORD */ C(0xb927, LHR, RRE, EI, 0, r2_16s, 0, r1_32, mov2, 0) C(0xb907, LGHR, RRE, EI, 0, r2_16s, 0, r1, mov2, 0)