diff options
author | Tom Tromey <tom@tromey.com> | 2019-10-05 18:27:29 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-10-23 15:16:49 -0600 |
commit | f16f7b7c7447c44f4c6d23fd478c7dd767cdf642 (patch) | |
tree | 1de5c3fe7e54ad5f2ea0e40a284c2ddb6cc50546 /gdb/or1k-tdep.h | |
parent | 6999161a2a3b3cbd918570e094199184331d4f81 (diff) | |
download | gdb-f16f7b7c7447c44f4c6d23fd478c7dd767cdf642.zip gdb-f16f7b7c7447c44f4c6d23fd478c7dd767cdf642.tar.gz gdb-f16f7b7c7447c44f4c6d23fd478c7dd767cdf642.tar.bz2 |
Fix opcodes includes
Now that gdb can unconditionally use a -I pointing at the top of the
source tree, we can remove the ugly "../opcodes/" formulation that was
needed earlier. This patch adds the -I and cleans up these includes.
gdb/ChangeLog
2019-10-23 Tom Tromey <tom@tromey.com>
* arc-tdep.c: Remove ".." from include.
* frv-tdep.c: Remove ".." from include.
* lm32-tdep.c: Remove ".." from include.
* microblaze-tdep.c: Remove ".." from include.
* or1k-tdep.h: Remove ".." from include.
* s12z-tdep.c: Remove ".." from include.
* Makefile.in (OPCODES_CFLAGS): Add comment.
(TOP_CFLAGS): New variable.
(INTERNAL_CFLAGS_BASE): Add TOP_CFLAGS.
Change-Id: I21428726d55f9fab0c9da90b56f6664f258cf91a
Diffstat (limited to 'gdb/or1k-tdep.h')
-rw-r--r-- | gdb/or1k-tdep.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/or1k-tdep.h b/gdb/or1k-tdep.h index e66c4a1..fbd3e95 100644 --- a/gdb/or1k-tdep.h +++ b/gdb/or1k-tdep.h @@ -23,8 +23,8 @@ #define TARGET_OR1K #endif -#include "../opcodes/or1k-desc.h" -#include "../opcodes/or1k-opc.h" +#include "opcodes/or1k-desc.h" +#include "opcodes/or1k-opc.h" /* General Purpose Registers */ #define OR1K_ZERO_REGNUM 0 |