diff options
author | Lluís Vilanova <vilanova@ac.upc.edu> | 2012-02-13 05:33:45 +0000 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2012-03-05 19:51:18 +0100 |
commit | 3208afbe04ad976e038fdb55d11f9f90629a5217 (patch) | |
tree | e3930dcac5e8341c7fa0622218f8cfd893423379 | |
parent | 1edb493490c5cb1eb5ddd55ba498dfb5f008050c (diff) | |
download | qemu-3208afbe04ad976e038fdb55d11f9f90629a5217.zip |
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: Alexander Graf <agraf@suse.de>
-rw-r--r-- | target-s390x/helper.h (renamed from target-s390x/helpers.h) | 0 | ||||
-rw-r--r-- | target-s390x/op_helper.c | 2 | ||||
-rw-r--r-- | target-s390x/translate.c | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/target-s390x/helpers.h b/target-s390x/helper.h index 01c8d0ea84..01c8d0ea84 100644 --- a/target-s390x/helpers.h +++ b/target-s390x/helper.h diff --git a/target-s390x/op_helper.c b/target-s390x/op_helper.c index cf26b29ee9..70d98a80df 100644 --- a/target-s390x/op_helper.c +++ b/target-s390x/op_helper.c @@ -21,7 +21,7 @@ #include "cpu.h" #include "dyngen-exec.h" #include "host-utils.h" -#include "helpers.h" +#include "helper.h" #include <string.h> #include "kvm.h" #include "qemu-timer.h" diff --git a/target-s390x/translate.c b/target-s390x/translate.c index 71f9dcdff5..8fab38cb1d 100644 --- a/target-s390x/translate.c +++ b/target-s390x/translate.c @@ -38,9 +38,9 @@ static TCGv_ptr cpu_env; #include "gen-icount.h" -#include "helpers.h" +#include "helper.h" #define GEN_HELPER 1 -#include "helpers.h" +#include "helper.h" typedef struct DisasContext DisasContext; struct DisasContext { |