summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorFernando Nasser <fnasser@redhat.com>2000-06-09 00:51:55 +0000
committerFernando Nasser <fnasser@redhat.com>2000-06-09 00:51:55 +0000
commita88c1392bd0e518767fc32251fcbbe2899abbb5d (patch)
treeac96fa6277c6089068ff578470a1f34bdf76ffdc /gdb
parent63a0b638d4552518d5657938ae13032f95b1c7c3 (diff)
downloadbinutils-gdb-a88c1392bd0e518767fc32251fcbbe2899abbb5d.tar.gz
2000-06-08 Fernando Nasser <fnasser@cygnus.com>
* values.c (value_primitive_field): Copy VALUE_REGNO as well. With typed registers we may have the location information in this field, in addition to VALUE_ADDRESS (which was already being copied).
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/values.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index a4b40468f4c..a62bb5f43eb 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2000-06-08 Fernando Nasser <fnasser@cygnus.com>
+
+ * values.c (value_primitive_field): Copy VALUE_REGNO as well.
+ With typed registers we may have the location information in this field,
+ in addition to VALUE_ADDRESS (which was already being copied).
+
Thu Jun 8 15:26:44 2000 Andrew Cagney <cagney@b1.cygnus.com>
* config/mips/tm-mips.h (GDB_MULTI_ARCH): Define as 1.
diff --git a/gdb/values.c b/gdb/values.c
index b77f405c45b..ff4951dba03 100644
--- a/gdb/values.c
+++ b/gdb/values.c
@@ -841,6 +841,7 @@ value_primitive_field (arg1, offset, fieldno, arg_type)
if (VALUE_LVAL (arg1) == lval_internalvar)
VALUE_LVAL (v) = lval_internalvar_component;
VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
+ VALUE_REGNO (v) = VALUE_REGNO (arg1);
/* VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
+ TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; */
return v;