From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50082) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFvT0-0001eN-2l for qemu-devel@nongnu.org; Thu, 05 Apr 2012 18:47:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFvSy-0001Hs-AY for qemu-devel@nongnu.org; Thu, 05 Apr 2012 18:47:45 -0400 Received: from mail-bk0-f45.google.com ([209.85.214.45]:60076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFvSx-0001HW-V5 for qemu-devel@nongnu.org; Thu, 05 Apr 2012 18:47:44 -0400 Received: by bkcjg9 with SMTP id jg9so2020181bkc.4 for ; Thu, 05 Apr 2012 15:47:41 -0700 (PDT) From: Max Filippov Date: Fri, 6 Apr 2012 02:46:49 +0400 Message-Id: <1333666012-16094-2-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1333666012-16094-1-git-send-email-jcmvbkbc@gmail.com> References: <1333666012-16094-1-git-send-email-jcmvbkbc@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 1/4] target-xtensa: Move helpers.h to helper.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Max Filippov , Anthony Liguori , =?UTF-8?q?Llu=C3=ADs=20Vilanova?= From: Lluís Vilanova Provides a file naming scheme consistent with other targets. Signed-off-by: Lluís Vilanova Signed-off-by: Max Filippov --- target-xtensa/{helpers.h => helper.h} | 0 target-xtensa/op_helper.c | 2 +- target-xtensa/translate.c | 6 +++--- xtensa-semi.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename target-xtensa/{helpers.h => helper.h} (100%) diff --git a/target-xtensa/helpers.h b/target-xtensa/helper.h similarity index 100% rename from target-xtensa/helpers.h rename to target-xtensa/helper.h diff --git a/target-xtensa/op_helper.c b/target-xtensa/op_helper.c index cdef0db..806384f 100644 --- a/target-xtensa/op_helper.c +++ b/target-xtensa/op_helper.c @@ -27,7 +27,7 @@ #include "cpu.h" #include "dyngen-exec.h" -#include "helpers.h" +#include "helper.h" #include "host-utils.h" static void do_unaligned_access(target_ulong addr, int is_write, int is_user, diff --git a/target-xtensa/translate.c b/target-xtensa/translate.c index e0ff72b..492dbcc 100644 --- a/target-xtensa/translate.c +++ b/target-xtensa/translate.c @@ -37,9 +37,9 @@ #include "qemu-log.h" #include "sysemu.h" -#include "helpers.h" +#include "helper.h" #define GEN_HELPER 1 -#include "helpers.h" +#include "helper.h" typedef struct DisasContext { const XtensaConfig *config; @@ -183,7 +183,7 @@ void xtensa_translate_init(void) } } #define GEN_HELPER 2 -#include "helpers.h" +#include "helper.h" } static inline bool option_bits_enabled(DisasContext *dc, uint64_t opt) diff --git a/xtensa-semi.c b/xtensa-semi.c index 5754b77..b7c8c34 100644 --- a/xtensa-semi.c +++ b/xtensa-semi.c @@ -31,7 +31,7 @@ #include #include "cpu.h" #include "dyngen-exec.h" -#include "helpers.h" +#include "helper.h" #include "qemu-log.h" enum { -- 1.7.7.6