diff options
author | John Darrington <john@darrington.wattle.id.au> | 2018-07-11 10:42:01 +0200 |
---|---|---|
committer | John Darrington <john@darrington.wattle.id.au> | 2018-08-18 07:50:03 +0200 |
commit | 7ba3ba91a3dbc43f7ff16c4899f7f1cbef056db0 (patch) | |
tree | 9dc0beb27e3933bb64dc6d4265d391f65f601dbc | |
parent | 2e72a56e451cf26fb01712d6004d3b6a70749756 (diff) | |
download | gdb-7ba3ba91a3dbc43f7ff16c4899f7f1cbef056db0.zip gdb-7ba3ba91a3dbc43f7ff16c4899f7f1cbef056db0.tar.gz gdb-7ba3ba91a3dbc43f7ff16c4899f7f1cbef056db0.tar.bz2 |
S12Z: Move opcode header to public include directory.
opcodes/
* s12z.h: Delete.
* s12z-dis.c: Adjust path of included file.
include/
* opcode/s12z.h: New file.
gas/
* config/tc-s12z.c: Adjust path of included file.
-rw-r--r-- | gas/config/tc-s12z.c | 2 | ||||
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/s12z.h (renamed from opcodes/s12z.h) | 0 | ||||
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/s12z-dis.c | 2 |
5 files changed, 10 insertions, 2 deletions
diff --git a/gas/config/tc-s12z.c b/gas/config/tc-s12z.c index e024e72..736f062 100644 --- a/gas/config/tc-s12z.c +++ b/gas/config/tc-s12z.c @@ -22,7 +22,7 @@ #include "safe-ctype.h" #include "subsegs.h" #include "dwarf2dbg.h" -#include "opcodes/s12z.h" +#include "opcode/s12z.h" #include <stdint.h> #include <limits.h> #include <stdbool.h> diff --git a/include/ChangeLog b/include/ChangeLog index 4b3d549..f663f9b 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2018-07-27 John Darrington <john@darrington.wattle.id.au> + + * opcode/s12z.h: New file. + 2018-08-09 Richard Earnshaw <rearnsha@arm.com> * elf/arm.h: Updated comments for e_flags definitions. diff --git a/opcodes/s12z.h b/include/opcode/s12z.h index 7e38ac5..7e38ac5 100644 --- a/opcodes/s12z.h +++ b/include/opcode/s12z.h diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 78b9269..8776fbd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2018-07-28 John Darrington <john@darrington.wattle.id.au> + + * s12z.h: Delete. + 2018-08-14 H.J. Lu <hongjiu.lu@intel.com> * i386-dis.c (OP_E_memory): In 64-bit mode, display eiz for diff --git a/opcodes/s12z-dis.c b/opcodes/s12z-dis.c index 47f8616..7130908 100644 --- a/opcodes/s12z-dis.c +++ b/opcodes/s12z-dis.c @@ -24,7 +24,7 @@ #include <stdbool.h> #include <assert.h> -#include "s12z.h" +#include "opcode/s12z.h" #include "bfd.h" #include "dis-asm.h" |