From patchwork Sun Sep 15 00:03:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 274992 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 524E82C0142 for ; Sun, 15 Sep 2013 10:04:51 +1000 (EST) Received: from localhost ([::1]:54973 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKzpZ-0007cN-BW for incoming@patchwork.ozlabs.org; Sat, 14 Sep 2013 20:04:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKzox-0007Y8-PA for qemu-devel@nongnu.org; Sat, 14 Sep 2013 20:04:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VKzoq-00010q-9F for qemu-devel@nongnu.org; Sat, 14 Sep 2013 20:04:11 -0400 Received: from mail-pb0-x22e.google.com ([2607:f8b0:400e:c01::22e]:42082) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKzoq-00010l-28 for qemu-devel@nongnu.org; Sat, 14 Sep 2013 20:04:04 -0400 Received: by mail-pb0-f46.google.com with SMTP id rq2so2655533pbb.19 for ; Sat, 14 Sep 2013 17:04:03 -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:in-reply-to:references; bh=mNh9OLLgjA1ywtqoZq4eFLZeDufi1Ut2jtXVeP5++rg=; b=ZqKWFUIvNkG0k4g1kjefsBRPiZdEIPbNm0Tf5VQN6E3950/zdJdLZ0qbKhXQBOIqMp UZenBPJwmj674md8ZEo2kEnF40L6er3Heiu7H6fk5RnGP83cWgvZPV/XKmZ2lzioiKi+ 8+2jO8nleYirU6HVwKVxSRj6TZiAV0fum1yNhmIMlU0/Hu7wphhJezAmltGoFxNgCW/Y g2ahNl0sAtXDmhrS91ISC5hBNfCUWfmZMEbKMGjIOr7a6J2V7upyyD+gywhLpICBx0ju zpBSmz58UoIXR90mEd3Z4yJoIZwyzVh4rzPHltwqdJJ9TTbItBVKMgUVMDACSM6ba9De pY7A== X-Received: by 10.68.189.163 with SMTP id gj3mr21177941pbc.102.1379203443171; Sat, 14 Sep 2013 17:04:03 -0700 (PDT) Received: from anchor.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id vz4sm27763065pab.11.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 14 Sep 2013 17:04:02 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Sat, 14 Sep 2013 17:03:49 -0700 Message-Id: <1379203434-5680-4-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1379203434-5680-1-git-send-email-rth@twiddle.net> References: <1379203434-5680-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c01::22e Cc: peter.maydell@linaro.org, Paul Brook , aurelien@aurel32.net, sw@weilnetz.de Subject: [Qemu-devel] [PATCH 3/8] target-m68k: Rename helpers.h to helper.h 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 This brings the m68k target in line with all other targets. Signed-off-by: Richard Henderson Reviewed-by: Stefan Weil --- target-m68k/helper.c | 2 +- target-m68k/{helpers.h => helper.h} | 0 target-m68k/op_helper.c | 2 +- target-m68k/translate.c | 6 +++--- 4 files changed, 5 insertions(+), 5 deletions(-) rename target-m68k/{helpers.h => helper.h} (100%) diff --git a/target-m68k/helper.c b/target-m68k/helper.c index 00a7a08..a508896 100644 --- a/target-m68k/helper.c +++ b/target-m68k/helper.c @@ -21,7 +21,7 @@ #include "cpu.h" #include "exec/gdbstub.h" -#include "helpers.h" +#include "helper.h" #define SIGNBIT (1u << 31) diff --git a/target-m68k/helpers.h b/target-m68k/helper.h similarity index 100% rename from target-m68k/helpers.h rename to target-m68k/helper.h diff --git a/target-m68k/op_helper.c b/target-m68k/op_helper.c index 30f7d8b..bbbfd7f 100644 --- a/target-m68k/op_helper.c +++ b/target-m68k/op_helper.c @@ -17,7 +17,7 @@ * License along with this library; if not, see . */ #include "cpu.h" -#include "helpers.h" +#include "helper.h" #if defined(CONFIG_USER_ONLY) diff --git a/target-m68k/translate.c b/target-m68k/translate.c index 0be0a96..f31e48d 100644 --- a/target-m68k/translate.c +++ b/target-m68k/translate.c @@ -23,9 +23,9 @@ #include "tcg-op.h" #include "qemu/log.h" -#include "helpers.h" +#include "helper.h" #define GEN_HELPER 1 -#include "helpers.h" +#include "helper.h" //#define DEBUG_DISPATCH 1 @@ -110,7 +110,7 @@ void m68k_tcg_init(void) store_dummy = tcg_global_mem_new(TCG_AREG0, -8, "NULL"); #define GEN_HELPER 2 -#include "helpers.h" +#include "helper.h" } static inline void qemu_assert(int cond, const char *msg)