summaryrefslogtreecommitdiff
path: root/gdb/values.c
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>1996-11-21 03:19:37 +0000
committerMartin Hunt <hunt@redhat.com>1996-11-21 03:19:37 +0000
commitd716b33d85ee84e8b69f395977c479b8e66474d5 (patch)
treeabf91e0683cf330d3ba28da76bfede91a2ed90d1 /gdb/values.c
parent24cbf0a4166c6066a3070ed987108b5babfb1ff7 (diff)
downloadbinutils-gdb-d716b33d85ee84e8b69f395977c479b8e66474d5.tar.gz
Wed Nov 20 19:09:16 1996 Martin M. Hunt <hunt@pizza.cygnus.com>
* infcmd.c (do_registers_info): Call val_print with the virtual buf instead of the raw buf. Needed for REGISTER_CONVERT to work with non-floating point regs. start-sanitize-d10v * d10v-tdep.c (d10v_skip_prologue): If we have line debugging information, then the end of the prologue should the first assembly instruction of the first source line. * values.c (value_from_longest): Put in D10V call to fix up address pointers. * config/d10v/tm-d10v.h (REGISTER_VIRTUAL_SIZE): Modified. (REGISTER_VIRTUAL_TYPE): Modified for PC_REGNUM and SP_REGNUM. (REGISTER_CONVERTIBLE): Make PC and SP convertible. (REGISTER_CONVERT_TO_VIRTUAL): Define. (REGISTER_CONVERT_TO_RAW): Define. (D10V_MAKE_DADDR): Define. (D10V_MAKE_IADDR): Define. end-sanitize-d10v
Diffstat (limited to 'gdb/values.c')
-rw-r--r--gdb/values.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/values.c b/gdb/values.c
index 3f9e7bbb808..404485dacff 100644
--- a/gdb/values.c
+++ b/gdb/values.c
@@ -1259,6 +1259,14 @@ value_from_longest (type, num)
case TYPE_CODE_PTR:
/* This assumes that all pointers of a given length
have the same form. */
+
+/* start-sanitize-d10v */
+#ifdef GDB_TARGET_IS_D10V
+ /* D10V function pointers need adjusted */
+ if (TYPE_TARGET_TYPE(type) && TYPE_CODE(TYPE_TARGET_TYPE(type)) == TYPE_CODE_FUNC)
+ num = D10V_MAKE_IADDR (num);
+#endif
+/* end-sanitize-d10v */
store_address (VALUE_CONTENTS_RAW (val), len, (CORE_ADDR) num);
break;