qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/4] target-xtensa: Move helpers.h to helper.h


From: Max Filippov
Subject: [Qemu-devel] [PATCH 1/4] target-xtensa: Move helpers.h to helper.h
Date: Fri, 6 Apr 2012 02:46:49 +0400

From: Lluís Vilanova <address@hidden>

Provides a file naming scheme consistent with other targets.

Signed-off-by: Lluís Vilanova <address@hidden>
Signed-off-by: Max Filippov <address@hidden>
---
 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 <stddef.h>
 #include "cpu.h"
 #include "dyngen-exec.h"
-#include "helpers.h"
+#include "helper.h"
 #include "qemu-log.h"
 
 enum {
-- 
1.7.7.6




reply via email to

[Prev in Thread] Current Thread [Next in Thread]