aboutsummaryrefslogtreecommitdiff
path: root/gdb/m2-exp.y
diff options
context:
space:
mode:
authorPeter Schauer <Peter.Schauer@mytum.de>1993-09-30 19:06:33 +0000
committerPeter Schauer <Peter.Schauer@mytum.de>1993-09-30 19:06:33 +0000
commit8d658c0866a3cb9beb3a049e1110858c29458e7d (patch)
tree08c3b25b481339cbc78d3ac0d64455df05198d02 /gdb/m2-exp.y
parent185d20fcda2952210613d37d59dde24e1fafa237 (diff)
downloadgdb-8d658c0866a3cb9beb3a049e1110858c29458e7d.zip
gdb-8d658c0866a3cb9beb3a049e1110858c29458e7d.tar.gz
gdb-8d658c0866a3cb9beb3a049e1110858c29458e7d.tar.bz2
* c-exp.y, m2-exp.y: Change type of address for msymbol to
builtin_type_long. * infptrace.c (fetch_register, store_inferior_register, child_xfer_memory): Use PTRACE_XFER_TYPE for the type of ptrace transfers. Provide an `int' default for PTRACE_XFER_TYPE.
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r--gdb/m2-exp.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y
index 13b93a0..ee6799c 100644
--- a/gdb/m2-exp.y
+++ b/gdb/m2-exp.y
@@ -646,7 +646,7 @@ variable: NAME
if (msymbol != NULL)
{
write_exp_elt_opcode (OP_LONG);
- write_exp_elt_type (builtin_type_int);
+ write_exp_elt_type (builtin_type_long);
write_exp_elt_longcst ((LONGEST) SYMBOL_VALUE_ADDRESS (msymbol));
write_exp_elt_opcode (OP_LONG);
write_exp_elt_opcode (UNOP_MEMVAL);