diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-07-28 11:01:50 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-07-28 11:01:50 -0400 |
commit | e512cdbdffafefa63baeb835ba6636fcef56e17d (patch) | |
tree | 3d1ebb4988fa11cae9461cc8e0dcaa4a2fa9f21a /gdb/value.h | |
parent | 3723fda829671b273d7b31a0753bb1fa8f614cb6 (diff) | |
download | gdb-e512cdbdffafefa63baeb835ba6636fcef56e17d.zip gdb-e512cdbdffafefa63baeb835ba6636fcef56e17d.tar.gz gdb-e512cdbdffafefa63baeb835ba6636fcef56e17d.tar.bz2 |
Introduce get_value_arch
Similar to get_type_arch, used to get the gdbarch associated to a
struct value.
gdb/ChangeLog:
* value.c (get_value_arch): New function.
* value.h (get_value_arch): New declaration.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/value.h b/gdb/value.h index 7ff6aa8..e25f52b 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -99,6 +99,10 @@ struct value *value_next (struct value *); extern struct type *value_type (const struct value *); +/* Return the gdbarch associated with the value. */ + +extern struct gdbarch *get_value_arch (const struct value *value); + /* This is being used to change the type of an existing value, that code should instead be creating a new value with the changed type (but possibly shared content). */ |