From: Florian Krohm Date: Thu, 20 Sep 2012 01:22:10 +0000 (+0000) Subject: s390: Rename host_s390_disasm.[ch] to s390_disasm.[ch] as they X-Git-Tag: svn/VALGRIND_3_9_0^2~233 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a00b8fbf7f70d3c5e693cf2502b6d1c01b13ca41;p=thirdparty%2Fvalgrind.git s390: Rename host_s390_disasm.[ch] to s390_disasm.[ch] as they are not really host specific. git-svn-id: svn://svn.valgrind.org/vex/trunk@2541 --- diff --git a/VEX/priv/guest_s390_toIR.c b/VEX/priv/guest_s390_toIR.c index 6655fb6b28..8215b2a438 100644 --- a/VEX/priv/guest_s390_toIR.c +++ b/VEX/priv/guest_s390_toIR.c @@ -40,7 +40,7 @@ #include "main_globals.h" /* vex_traceflags */ #include "guest_generic_bb_to_IR.h" /* DisResult */ #include "guest_s390_defs.h" /* prototypes for this file's functions */ -#include "host_s390_disasm.h" +#include "s390_disasm.h" #include "host_s390_defs.h" /* S390_ROUND_xyzzy */ diff --git a/VEX/priv/host_s390_defs.c b/VEX/priv/host_s390_defs.c index 36678326ec..8a99ad0e77 100644 --- a/VEX/priv/host_s390_defs.c +++ b/VEX/priv/host_s390_defs.c @@ -40,7 +40,7 @@ #include "main_globals.h" #include "host_generic_regs.h" #include "host_s390_defs.h" -#include "host_s390_disasm.h" +#include "s390_disasm.h" #include "guest_s390_defs.h" /* S390X_GUEST_OFFSET */ #include diff --git a/VEX/priv/host_s390_disasm.c b/VEX/priv/s390_disasm.c similarity index 98% rename from VEX/priv/host_s390_disasm.c rename to VEX/priv/s390_disasm.c index ccccddee9f..297912dc83 100644 --- a/VEX/priv/host_s390_disasm.c +++ b/VEX/priv/s390_disasm.c @@ -1,7 +1,7 @@ /* -*- mode: C; c-basic-offset: 3; -*- */ /*---------------------------------------------------------------*/ -/*--- begin host_s390_disasm.c ---*/ +/*--- begin s390_disasm.c ---*/ /*---------------------------------------------------------------*/ /* @@ -34,7 +34,7 @@ #include "libvex_basictypes.h" #include "main_util.h" // vassert #include "main_globals.h" // vex_traceflags -#include "host_s390_disasm.h" +#include "s390_disasm.h" /* The format that is used to write out a mnemonic. */ static const HChar s390_mnm_fmt[] = "%-8s"; @@ -457,5 +457,5 @@ s390_disasm(UInt command, ...) } /*---------------------------------------------------------------*/ -/*--- end host_s390_disasm.c ---*/ +/*--- end s390_disasm.c ---*/ /*---------------------------------------------------------------*/ diff --git a/VEX/priv/host_s390_disasm.h b/VEX/priv/s390_disasm.h similarity index 92% rename from VEX/priv/host_s390_disasm.h rename to VEX/priv/s390_disasm.h index f053dc8be2..2cb9b6250b 100644 --- a/VEX/priv/host_s390_disasm.h +++ b/VEX/priv/s390_disasm.h @@ -1,7 +1,7 @@ /* -*- mode: C; c-basic-offset: 3; -*- */ /*---------------------------------------------------------------*/ -/*--- begin host_s390_disasm.h ---*/ +/*--- begin s390_disasm.h ---*/ /*---------------------------------------------------------------*/ /* @@ -28,8 +28,8 @@ The GNU General Public License is contained in the file COPYING. */ -#ifndef __VEX_HOST_S390_DISASM_H -#define __VEX_HOST_S390_DISASM_H +#ifndef __VEX_S390_DISASM_H +#define __VEX_S390_DISASM_H #include "libvex_basictypes.h" @@ -87,7 +87,7 @@ enum { void s390_disasm(UInt command, ...); /*---------------------------------------------------------------*/ -/*--- end host_s390_disasm.h ---*/ +/*--- end s390_disasm.h ---*/ /*---------------------------------------------------------------*/ -#endif /* __VEX_HOST_S390_DISASM_H */ +#endif /* __VEX_S390_DISASM_H */