From patchwork Fri Dec 9 12:17:32 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Huth X-Patchwork-Id: 704441 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)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3tZs8P3220z9vF6 for ; Fri, 9 Dec 2016 23:33:09 +1100 (AEDT) Received: from localhost ([::1]:46246 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFKMN-0005Dj-BI for incoming@patchwork.ozlabs.org; Fri, 09 Dec 2016 07:33:07 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47694) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cFK80-0006xF-Tw for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cFK7w-00035v-So for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:16 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41530) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cFK7w-00035T-Ka for qemu-devel@nongnu.org; Fri, 09 Dec 2016 07:18:12 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8339191C1D; Fri, 9 Dec 2016 12:18:11 +0000 (UTC) Received: from thh440s.redhat.com (ovpn-116-17.ams2.redhat.com [10.36.116.17]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uB9CHpaq031224; Fri, 9 Dec 2016 07:18:06 -0500 From: Thomas Huth To: qemu-devel@nongnu.org, Paolo Bonzini , Peter Crosthwaite , Richard Henderson , Aurelien Jarno , Peter Maydell Date: Fri, 9 Dec 2016 13:17:32 +0100 Message-Id: <1481285870-3396-3-git-send-email-thuth@redhat.com> In-Reply-To: <1481285870-3396-1-git-send-email-thuth@redhat.com> References: <1481285870-3396-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Fri, 09 Dec 2016 12:18:11 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 02/20] tilegx: Move CPU files to target/ folder X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Cornelia Huck , James Hogan , Jia Liu , Christian Borntraeger , Bastian Koppelmann , Anthony Green , Marcelo Tosatti , Mark Cave-Ayland , Laurent Vivier , Eduardo Habkost , Alexander Graf , Max Filippov , Michael Walle , Yongbok Kim , "Edgar E. Iglesias" , Guan Xuetao , Artyom Tarasenko , David Gibson Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Thomas Huth --- {target-tilegx => target/tilegx}/Makefile.objs | 0 {target-tilegx => target/tilegx}/cpu.c | 0 {target-tilegx => target/tilegx}/cpu.h | 0 {target-tilegx => target/tilegx}/helper.c | 0 {target-tilegx => target/tilegx}/helper.h | 0 {target-tilegx => target/tilegx}/opcode_tilegx.h | 0 {target-tilegx => target/tilegx}/simd_helper.c | 0 {target-tilegx => target/tilegx}/spr_def_64.h | 0 {target-tilegx => target/tilegx}/translate.c | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename {target-tilegx => target/tilegx}/Makefile.objs (100%) rename {target-tilegx => target/tilegx}/cpu.c (100%) rename {target-tilegx => target/tilegx}/cpu.h (100%) rename {target-tilegx => target/tilegx}/helper.c (100%) rename {target-tilegx => target/tilegx}/helper.h (100%) rename {target-tilegx => target/tilegx}/opcode_tilegx.h (100%) rename {target-tilegx => target/tilegx}/simd_helper.c (100%) rename {target-tilegx => target/tilegx}/spr_def_64.h (100%) rename {target-tilegx => target/tilegx}/translate.c (100%) diff --git a/target-tilegx/Makefile.objs b/target/tilegx/Makefile.objs similarity index 100% rename from target-tilegx/Makefile.objs rename to target/tilegx/Makefile.objs diff --git a/target-tilegx/cpu.c b/target/tilegx/cpu.c similarity index 100% rename from target-tilegx/cpu.c rename to target/tilegx/cpu.c diff --git a/target-tilegx/cpu.h b/target/tilegx/cpu.h similarity index 100% rename from target-tilegx/cpu.h rename to target/tilegx/cpu.h diff --git a/target-tilegx/helper.c b/target/tilegx/helper.c similarity index 100% rename from target-tilegx/helper.c rename to target/tilegx/helper.c diff --git a/target-tilegx/helper.h b/target/tilegx/helper.h similarity index 100% rename from target-tilegx/helper.h rename to target/tilegx/helper.h diff --git a/target-tilegx/opcode_tilegx.h b/target/tilegx/opcode_tilegx.h similarity index 100% rename from target-tilegx/opcode_tilegx.h rename to target/tilegx/opcode_tilegx.h diff --git a/target-tilegx/simd_helper.c b/target/tilegx/simd_helper.c similarity index 100% rename from target-tilegx/simd_helper.c rename to target/tilegx/simd_helper.c diff --git a/target-tilegx/spr_def_64.h b/target/tilegx/spr_def_64.h similarity index 100% rename from target-tilegx/spr_def_64.h rename to target/tilegx/spr_def_64.h diff --git a/target-tilegx/translate.c b/target/tilegx/translate.c similarity index 100% rename from target-tilegx/translate.c rename to target/tilegx/translate.c