diff options
author | Tom Tromey <tromey@adacore.com> | 2025-01-16 05:56:04 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2025-01-17 08:52:04 -0700 |
commit | 8d6a3c8e72657ae8d8abdc466b17e31657b2e273 (patch) | |
tree | d5b8b75a3d11901b82d88f49a03bed16453cb3ad /gdb/compile | |
parent | 8226e5c2ef56dbacb18edbc1453fbb930eaa0c62 (diff) | |
download | gdb-8d6a3c8e72657ae8d8abdc466b17e31657b2e273.zip gdb-8d6a3c8e72657ae8d8abdc466b17e31657b2e273.tar.gz gdb-8d6a3c8e72657ae8d8abdc466b17e31657b2e273.tar.bz2 |
Add missing includes of extract-store-integer.h
I found a number of .c files that need to include
extract-store-integer.h but that were only including it indirectly.
This patch adds the missing includes. This change enables the next
patch.
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-loc2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/compile/compile-loc2c.c b/gdb/compile/compile-loc2c.c index 4237044..df05c01 100644 --- a/gdb/compile/compile-loc2c.c +++ b/gdb/compile/compile-loc2c.c @@ -31,6 +31,7 @@ #include "dwarf2/frame.h" #include "value.h" #include "gdbarch.h" +#include "extract-store-integer.h" |