diff options
author | Lluís Vilanova <vilanova@ac.upc.edu> | 2012-02-13 16:33:58 +0100 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2012-04-14 03:48:08 +0400 |
commit | 16c1deae215d4aac5b9b4fc090844b92852a0c5b (patch) | |
tree | 1f65bed8bb83260b61b1a47f0583a369761850e7 /target-xtensa/translate.c | |
parent | 7672725d41d1a04195affc1a7bd5676ba6314b14 (diff) |
target-xtensa: Move helpers.h to helper.h
Provides a file naming scheme consistent with other targets.
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'target-xtensa/translate.c')
-rw-r--r-- | target-xtensa/translate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-xtensa/translate.c b/target-xtensa/translate.c index e0ff72b3f8..492dbccd53 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) |