From: Lluís Vilanova Date: Mon, 13 Feb 2012 05:33:45 +0000 (+0000) Subject: Move helpers.h to helper.h X-Git-Tag: v1.1-rc0~274^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3208afbe04ad976e038fdb55d11f9f90629a5217;p=thirdparty%2Fqemu.git Move helpers.h to helper.h Provides a file naming scheme consistent with other targets. Signed-off-by: Lluís Vilanova Signed-off-by: Alexander Graf --- diff --git a/target-s390x/helpers.h b/target-s390x/helper.h similarity index 100% rename from target-s390x/helpers.h rename to target-s390x/helper.h diff --git a/target-s390x/op_helper.c b/target-s390x/op_helper.c index cf26b29ee9c..70d98a80df1 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 #include "kvm.h" #include "qemu-timer.h" diff --git a/target-s390x/translate.c b/target-s390x/translate.c index 71f9dcdff5d..8fab38cb1d1 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 {