diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-12-13 22:34:31 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-01-20 14:48:56 -0500 |
commit | 83b6e1f1c52c632a7b554674306cc586e03f7855 (patch) | |
tree | 58b7e560c3def532953945c2000076d8780d2a02 | |
parent | 6ad66f21fc6d839966abfb84738f8e992c7bb193 (diff) | |
download | binutils-83b6e1f1c52c632a7b554674306cc586e03f7855.zip binutils-83b6e1f1c52c632a7b554674306cc586e03f7855.tar.gz binutils-83b6e1f1c52c632a7b554674306cc586e03f7855.tar.bz2 |
gdb: remove language.h include from frame.h
This helps resolve some cyclic include problem later in the series.
The only language-related thing frame.h needs is enum language, and that
is in defs.h.
Doing so reveals that a bunch of files were relying on frame.h to
include language.h, so fix the fallouts here and there.
Change-Id: I178a7efec1953c2d088adb58483bade1f349b705
Reviewed-By: Bruno Larsen <blarsen@redhat.com>
-rw-r--r-- | gdb/aarch64-tdep.c | 1 | ||||
-rw-r--r-- | gdb/amd64-tdep.c | 1 | ||||
-rw-r--r-- | gdb/arm-tdep.c | 1 | ||||
-rw-r--r-- | gdb/cp-abi.c | 1 | ||||
-rw-r--r-- | gdb/cp-support.c | 1 | ||||
-rw-r--r-- | gdb/expop.h | 1 | ||||
-rw-r--r-- | gdb/f-lang.h | 1 | ||||
-rw-r--r-- | gdb/frame.h | 1 | ||||
-rw-r--r-- | gdb/gnu-v3-abi.c | 1 | ||||
-rw-r--r-- | gdb/go-lang.h | 1 | ||||
-rw-r--r-- | gdb/m2-typeprint.c | 1 | ||||
-rw-r--r-- | gdb/namespace.c | 1 | ||||
-rw-r--r-- | gdb/ppc-sysv-tdep.c | 1 | ||||
-rw-r--r-- | gdb/python/py-disasm.c | 1 | ||||
-rw-r--r-- | gdb/python/py-frame.c | 1 | ||||
-rw-r--r-- | gdb/thread.c | 1 |
16 files changed, 15 insertions, 1 deletions
diff --git a/gdb/aarch64-tdep.c b/gdb/aarch64-tdep.c index 7bf36d8..aeca305 100644 --- a/gdb/aarch64-tdep.c +++ b/gdb/aarch64-tdep.c @@ -21,6 +21,7 @@ #include "defs.h" #include "frame.h" +#include "language.h" #include "gdbcmd.h" #include "gdbcore.h" #include "dis-asm.h" diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c index 76e843e..70d0d0f 100644 --- a/gdb/amd64-tdep.c +++ b/gdb/amd64-tdep.c @@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "opcode/i386.h" #include "dis-asm.h" #include "arch-utils.h" diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c index 51ec523..56936bd 100644 --- a/gdb/arm-tdep.c +++ b/gdb/arm-tdep.c @@ -22,6 +22,7 @@ #include <ctype.h> /* XXX for isupper (). */ #include "frame.h" +#include "language.h" #include "inferior.h" #include "infrun.h" #include "gdbcmd.h" diff --git a/gdb/cp-abi.c b/gdb/cp-abi.c index e9e4224..87a3b5c 100644 --- a/gdb/cp-abi.c +++ b/gdb/cp-abi.c @@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "value.h" #include "cp-abi.h" #include "command.h" diff --git a/gdb/cp-support.c b/gdb/cp-support.c index b7ed210..6a96f9f 100644 --- a/gdb/cp-support.c +++ b/gdb/cp-support.c @@ -20,6 +20,7 @@ #include "defs.h" #include "cp-support.h" +#include "language.h" #include "demangle.h" #include "gdbcmd.h" #include "dictionary.h" diff --git a/gdb/expop.h b/gdb/expop.h index de74e88..9e6ab0d 100644 --- a/gdb/expop.h +++ b/gdb/expop.h @@ -24,6 +24,7 @@ #include "c-lang.h" #include "cp-abi.h" #include "expression.h" +#include "language.h" #include "objfiles.h" #include "gdbsupport/traits.h" #include "gdbsupport/enum-flags.h" diff --git a/gdb/f-lang.h b/gdb/f-lang.h index b3c1392..673e273 100644 --- a/gdb/f-lang.h +++ b/gdb/f-lang.h @@ -23,6 +23,7 @@ #ifndef F_LANG_H #define F_LANG_H +#include "language.h" #include "valprint.h" struct type_print_options; diff --git a/gdb/frame.h b/gdb/frame.h index 5935465..2c2e320 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -71,7 +71,6 @@ */ -#include "language.h" #include "cli/cli-option.h" #include "gdbsupport/common-debug.h" diff --git a/gdb/gnu-v3-abi.c b/gdb/gnu-v3-abi.c index 7a0a70f..6f5b87f 100644 --- a/gdb/gnu-v3-abi.c +++ b/gdb/gnu-v3-abi.c @@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "value.h" #include "cp-abi.h" #include "cp-support.h" diff --git a/gdb/go-lang.h b/gdb/go-lang.h index f0929cc..1820b4c 100644 --- a/gdb/go-lang.h +++ b/gdb/go-lang.h @@ -22,6 +22,7 @@ struct type_print_options; +#include "language.h" #include "gdbtypes.h" #include "symtab.h" #include "value.h" diff --git a/gdb/m2-typeprint.c b/gdb/m2-typeprint.c index 62917e8..00a3288 100644 --- a/gdb/m2-typeprint.c +++ b/gdb/m2-typeprint.c @@ -17,6 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "gdbsupport/gdb_obstack.h" #include "bfd.h" /* Binary File Description */ #include "symtab.h" diff --git a/gdb/namespace.c b/gdb/namespace.c index 735b102..bdf5e8f 100644 --- a/gdb/namespace.c +++ b/gdb/namespace.c @@ -19,6 +19,7 @@ #include "defs.h" #include "namespace.h" #include "frame.h" +#include "symtab.h" /* Add a using directive to USING_DIRECTIVES. If the using directive in question has already been added, don't add it twice. diff --git a/gdb/ppc-sysv-tdep.c b/gdb/ppc-sysv-tdep.c index 9cea633..3df56c8 100644 --- a/gdb/ppc-sysv-tdep.c +++ b/gdb/ppc-sysv-tdep.c @@ -19,6 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "gdbcore.h" #include "inferior.h" #include "regcache.h" diff --git a/gdb/python/py-disasm.c b/gdb/python/py-disasm.c index 13ac85c..c3d8d8a 100644 --- a/gdb/python/py-disasm.c +++ b/gdb/python/py-disasm.c @@ -19,6 +19,7 @@ #include "defs.h" #include "python-internal.h" +#include "language.h" #include "dis-asm.h" #include "arch-utils.h" #include "charset.h" diff --git a/gdb/python/py-frame.c b/gdb/python/py-frame.c index 6d4e8c2..f66d22b 100644 --- a/gdb/python/py-frame.c +++ b/gdb/python/py-frame.c @@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "charset.h" #include "block.h" #include "frame.h" diff --git a/gdb/thread.c b/gdb/thread.c index efcbe64..1a852f7 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -20,6 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" +#include "language.h" #include "symtab.h" #include "frame.h" #include "inferior.h" |