]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Introduce get_value_arch
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 28 Jul 2015 15:01:50 +0000 (11:01 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 28 Jul 2015 15:01:50 +0000 (11:01 -0400)
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.

gdb/ChangeLog
gdb/value.c
gdb/value.h

index 1e83384c130e67e227f2076cefad98b48273177b..93e054bcb400c8b55a193693c4bc93712e37336d 100644 (file)
@@ -1,3 +1,8 @@
+2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
+
+       * value.c (get_value_arch): New function.
+       * value.h (get_value_arch): New declaration.
+
 2015-07-28  Simon Marchi  <simon.marchi@ericsson.com>
 
        * value.c (struct value): Update comments.
index 7fb7e2b53072fd7639b5b42cb1d9ea2872dd7bc0..0d540d5762df0efc0d3f2c77c5fea51f85b63ccf 100644 (file)
@@ -340,6 +340,14 @@ struct value
   VEC(range_s) *optimized_out;
 };
 
+/* See value.h.  */
+
+struct gdbarch *
+get_value_arch (const struct value *value)
+{
+  return get_type_arch (value_type (value));
+}
+
 int
 value_bits_available (const struct value *value, int offset, int length)
 {
index 7ff6aa8fd98741e3c5a480250ea80ea4ea7644e5..e25f52bffca0416f58ffa01210792288f12ee3c0 100644 (file)
@@ -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).  */