diff options
Diffstat (limited to 'gdb/arch')
-rw-r--r-- | gdb/arch/aarch64-insn.c | 2 | ||||
-rw-r--r-- | gdb/arch/aarch64.c | 2 | ||||
-rw-r--r-- | gdb/arch/aarch64.h | 2 | ||||
-rw-r--r-- | gdb/arch/amd64.c | 4 | ||||
-rw-r--r-- | gdb/arch/amd64.h | 2 | ||||
-rw-r--r-- | gdb/arch/arm-get-next-pcs.c | 6 | ||||
-rw-r--r-- | gdb/arch/arm-linux.c | 4 | ||||
-rw-r--r-- | gdb/arch/arm.c | 4 | ||||
-rw-r--r-- | gdb/arch/i386.c | 6 | ||||
-rw-r--r-- | gdb/arch/i386.h | 2 | ||||
-rw-r--r-- | gdb/arch/ppc-linux-common.c | 2 | ||||
-rw-r--r-- | gdb/arch/riscv.c | 2 | ||||
-rw-r--r-- | gdb/arch/riscv.h | 2 | ||||
-rw-r--r-- | gdb/arch/tic6x.c | 4 |
14 files changed, 22 insertions, 22 deletions
diff --git a/gdb/arch/aarch64-insn.c b/gdb/arch/aarch64-insn.c index cf6e669..e04ad87 100644 --- a/gdb/arch/aarch64-insn.c +++ b/gdb/arch/aarch64-insn.c @@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "aarch64-insn.h" /* Toggle this file's internal debugging dump. */ diff --git a/gdb/arch/aarch64.c b/gdb/arch/aarch64.c index 11a15dd..30c5f8a 100644 --- a/gdb/arch/aarch64.c +++ b/gdb/arch/aarch64.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "aarch64.h" #include <stdlib.h> diff --git a/gdb/arch/aarch64.h b/gdb/arch/aarch64.h index 309fe75..aed1035 100644 --- a/gdb/arch/aarch64.h +++ b/gdb/arch/aarch64.h @@ -20,7 +20,7 @@ #ifndef ARCH_AARCH64_H #define ARCH_AARCH64_H -#include "common/tdesc.h" +#include "gdbsupport/tdesc.h" /* Create the aarch64 target description. A non zero VQ value indicates both the presence of SVE and the Vector Quotient - the number of 128bit chunks in diff --git a/gdb/arch/amd64.c b/gdb/arch/amd64.c index b7e6332..3158ab5 100644 --- a/gdb/arch/amd64.c +++ b/gdb/arch/amd64.c @@ -15,9 +15,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "amd64.h" -#include "common/x86-xstate.h" +#include "gdbsupport/x86-xstate.h" #include <stdlib.h> #include "../features/i386/64bit-avx.c" diff --git a/gdb/arch/amd64.h b/gdb/arch/amd64.h index 1e02c52..96b52a9 100644 --- a/gdb/arch/amd64.h +++ b/gdb/arch/amd64.h @@ -18,7 +18,7 @@ #ifndef ARCH_AMD64_H #define ARCH_AMD64_H -#include "common/tdesc.h" +#include "gdbsupport/tdesc.h" #include <stdint.h> target_desc *amd64_create_target_description (uint64_t xcr0, bool is_x32, diff --git a/gdb/arch/arm-get-next-pcs.c b/gdb/arch/arm-get-next-pcs.c index 00c7064..e133570 100644 --- a/gdb/arch/arm-get-next-pcs.c +++ b/gdb/arch/arm-get-next-pcs.c @@ -17,9 +17,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" -#include "common/gdb_vecs.h" -#include "common/common-regcache.h" +#include "gdbsupport/common-defs.h" +#include "gdbsupport/gdb_vecs.h" +#include "gdbsupport/common-regcache.h" #include "arm.h" #include "arm-get-next-pcs.h" diff --git a/gdb/arch/arm-linux.c b/gdb/arch/arm-linux.c index 180228f..d23c196 100644 --- a/gdb/arch/arm-linux.c +++ b/gdb/arch/arm-linux.c @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" -#include "common/common-regcache.h" +#include "gdbsupport/common-defs.h" +#include "gdbsupport/common-regcache.h" #include "arch/arm.h" #include "arm-linux.h" #include "arch/arm-get-next-pcs.h" diff --git a/gdb/arch/arm.c b/gdb/arch/arm.c index 93738f0..860ce02 100644 --- a/gdb/arch/arm.c +++ b/gdb/arch/arm.c @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" -#include "common/common-regcache.h" +#include "gdbsupport/common-defs.h" +#include "gdbsupport/common-regcache.h" #include "arm.h" /* See arm.h. */ diff --git a/gdb/arch/i386.c b/gdb/arch/i386.c index ab24cf7..d08ac6a 100644 --- a/gdb/arch/i386.c +++ b/gdb/arch/i386.c @@ -15,10 +15,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "i386.h" -#include "common/tdesc.h" -#include "common/x86-xstate.h" +#include "gdbsupport/tdesc.h" +#include "gdbsupport/x86-xstate.h" #include <stdlib.h> #include "../features/i386/32bit-core.c" diff --git a/gdb/arch/i386.h b/gdb/arch/i386.h index 9a831ce..1caa0ae 100644 --- a/gdb/arch/i386.h +++ b/gdb/arch/i386.h @@ -18,7 +18,7 @@ #ifndef ARCH_I386_H #define ARCH_I386_H -#include "common/tdesc.h" +#include "gdbsupport/tdesc.h" #include <stdint.h> target_desc *i386_create_target_description (uint64_t xcr0, bool is_linux, diff --git a/gdb/arch/ppc-linux-common.c b/gdb/arch/ppc-linux-common.c index 6badd2f..8af30e3 100644 --- a/gdb/arch/ppc-linux-common.c +++ b/gdb/arch/ppc-linux-common.c @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "arch/ppc-linux-common.h" #include "arch/ppc-linux-tdesc.h" diff --git a/gdb/arch/riscv.c b/gdb/arch/riscv.c index 5ed1d47..68ff711 100644 --- a/gdb/arch/riscv.c +++ b/gdb/arch/riscv.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "riscv.h" #include <stdlib.h> #include <unordered_map> diff --git a/gdb/arch/riscv.h b/gdb/arch/riscv.h index 05c1905..7917bdf 100644 --- a/gdb/arch/riscv.h +++ b/gdb/arch/riscv.h @@ -20,7 +20,7 @@ #ifndef ARCH_RISCV_H #define ARCH_RISCV_H -#include "common/tdesc.h" +#include "gdbsupport/tdesc.h" /* The set of RISC-V architectural features that we track that impact how we configure the actual gdbarch instance. We hold one of these in the diff --git a/gdb/arch/tic6x.c b/gdb/arch/tic6x.c index dd2257c..03aacfa 100644 --- a/gdb/arch/tic6x.c +++ b/gdb/arch/tic6x.c @@ -15,9 +15,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "common/tdesc.h" +#include "gdbsupport/tdesc.h" #include "tic6x.h" -#include "common/common-defs.h" +#include "gdbsupport/common-defs.h" #include "../features/tic6x-core.c" #include "../features/tic6x-gp.c" |