diff options
author | Keith Seitz <keiths@redhat.com> | 2018-08-10 10:52:13 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2018-08-10 11:14:25 -0700 |
commit | 946d3d10e7609e074be30db8662cb9c4a3d8961d (patch) | |
tree | 659dad392e54f9f8bb87b8a3c0a4a9434e1109da /gdb/compile/compile-c.h | |
parent | 9cdfd9a26ef63ef2fee58c0e7475b5373b61e5d1 (diff) | |
download | binutils-946d3d10e7609e074be30db8662cb9c4a3d8961d.zip binutils-946d3d10e7609e074be30db8662cb9c4a3d8961d.tar.gz binutils-946d3d10e7609e074be30db8662cb9c4a3d8961d.tar.bz2 |
Move compile_instance to compile.c
This simple patch moves any code related to compile_instance into
compile.c, reserving compile-c-* files strictly for C language support.
gdb/ChangeLog:
* compile/compile-c-symbols.c (struct symbol_error)
(hash_symbol_error, eq_symbol_error, del_symbol_error)
(compile_instance::insert_symbol_error)
(compile_instance::error_symbol_once): Move to ...
* compile/compile.c: ... here.
Diffstat (limited to 'gdb/compile/compile-c.h')
-rw-r--r-- | gdb/compile/compile-c.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/compile/compile-c.h b/gdb/compile/compile-c.h index 4dece9c..18ff4d3 100644 --- a/gdb/compile/compile-c.h +++ b/gdb/compile/compile-c.h @@ -86,4 +86,10 @@ extern const char *c_get_mode_for_size (int size); struct dynamic_prop; extern std::string c_get_range_decl_name (const struct dynamic_prop *prop); +/* Compute the name of the pointer representing a local symbol's + address. */ + +extern gdb::unique_xmalloc_ptr<char> + c_symbol_substitution_name (struct symbol *sym); + #endif /* GDB_COMPILE_C_H */ |