aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/server.h
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2010-06-15 10:44:48 +0000
committerPedro Alves <palves@redhat.com>2010-06-15 10:44:48 +0000
commit4e29fb547ead13cd1f2856f1af3d4029a81ea196 (patch)
tree0f1f312e6703c16533ef9d98f3cdbf783c111e58 /gdb/gdbserver/server.h
parentd70546dee99bfc85b6ef47c479611109271ccffa (diff)
downloadgdb-4e29fb547ead13cd1f2856f1af3d4029a81ea196.zip
gdb-4e29fb547ead13cd1f2856f1af3d4029a81ea196.tar.gz
gdb-4e29fb547ead13cd1f2856f1af3d4029a81ea196.tar.bz2
* linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
(i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with LONGEST uses. * server.h (struct emit_ops): Replace int64_t uses with LONGEST uses. * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t uses with LONGEST uses.
Diffstat (limited to 'gdb/gdbserver/server.h')
-rw-r--r--gdb/gdbserver/server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/server.h b/gdb/gdbserver/server.h
index 89c5311..8bdd217 100644
--- a/gdb/gdbserver/server.h
+++ b/gdb/gdbserver/server.h
@@ -598,7 +598,7 @@ struct emit_ops
void (*emit_if_goto) (int *offset_p, int *size_p);
void (*emit_goto) (int *offset_p, int *size_p);
void (*write_goto_address) (CORE_ADDR from, CORE_ADDR to, int size);
- void (*emit_const) (int64_t num);
+ void (*emit_const) (LONGEST num);
void (*emit_call) (CORE_ADDR fn);
void (*emit_reg) (int reg);
void (*emit_pop) (void);