From patchwork Fri May 19 07:30:24 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yang Zhong X-Patchwork-Id: 9736101 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 5300E6041F for ; Fri, 19 May 2017 07:32:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 721EF223A5 for ; Fri, 19 May 2017 07:32:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 66F162843C; Fri, 19 May 2017 07:32:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 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 mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 218D5271CB for ; Fri, 19 May 2017 07:32:42 +0000 (UTC) Received: from localhost ([::1]:56997 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dBcOu-0007Ln-Ub for patchwork-qemu-devel@patchwork.kernel.org; Fri, 19 May 2017 03:32:40 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47431) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dBcNS-0007Jj-5j for qemu-devel@nongnu.org; Fri, 19 May 2017 03:31:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dBcNR-000391-Dc for qemu-devel@nongnu.org; Fri, 19 May 2017 03:31:10 -0400 Received: from mga09.intel.com ([134.134.136.24]:61751) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dBcNR-00037L-51 for qemu-devel@nongnu.org; Fri, 19 May 2017 03:31:09 -0400 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 May 2017 00:31:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.38,363,1491289200"; d="scan'208"; a="1171576106" Received: from yangzhon-virtual.bj.intel.com ([10.238.145.52]) by fmsmga002.fm.intel.com with ESMTP; 19 May 2017 00:31:07 -0700 From: Yang Zhong To: pbonzini@redhat.com Date: Fri, 19 May 2017 15:30:24 +0800 Message-Id: <1495179026-27872-5-git-send-email-yang.zhong@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1495179026-27872-1-git-send-email-yang.zhong@intel.com> References: <1495179026-27872-1-git-send-email-yang.zhong@intel.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 134.134.136.24 Subject: [Qemu-devel] [PATCH v0 4/6] move tcg relative files into tcg directory 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: Yang Zhong , anthony.xu@intel.com, qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP move translate-common.c to ./tcg Signed-off-by: Yang Zhong --- Makefile.target | 2 +- translate-common.c => tcg/translate-common.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename translate-common.c => tcg/translate-common.c (100%) diff --git a/Makefile.target b/Makefile.target index c96ebd2..7ee6cb3 100644 --- a/Makefile.target +++ b/Makefile.target @@ -90,7 +90,7 @@ all: $(PROGS) stap # cpu emulator library obj-y = exec.o cpu-exec.o obj-y += tcg/translate-all.o -obj-y += translate-common.o +obj-y += tcg/translate-common.o obj-y += cpu-exec-common.o obj-y += tcg/tcg.o tcg/tcg-op.o tcg/optimize.o obj-$(CONFIG_TCG_INTERPRETER) += tci.o diff --git a/translate-common.c b/tcg/translate-common.c similarity index 100% rename from translate-common.c rename to tcg/translate-common.c