diff options
author | Pedro Alves <palves@redhat.com> | 2010-06-15 10:44:48 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-06-15 10:44:48 +0000 |
commit | 4e29fb547ead13cd1f2856f1af3d4029a81ea196 (patch) | |
tree | 0f1f312e6703c16533ef9d98f3cdbf783c111e58 /gdb/gdbserver/tracepoint.c | |
parent | d70546dee99bfc85b6ef47c479611109271ccffa (diff) | |
download | gdb-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/tracepoint.c')
-rw-r--r-- | gdb/gdbserver/tracepoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbserver/tracepoint.c b/gdb/gdbserver/tracepoint.c index bafd82a..5f2e6b6 100644 --- a/gdb/gdbserver/tracepoint.c +++ b/gdb/gdbserver/tracepoint.c @@ -5113,7 +5113,7 @@ write_goto_address (CORE_ADDR from, CORE_ADDR to, int size) } static void -emit_const (int64_t num) +emit_const (LONGEST num) { target_emit_ops ()->emit_const (num); } @@ -5162,7 +5162,7 @@ emit_int_call_1 (CORE_ADDR fn, int arg1) target_emit_ops ()->emit_int_call_1 (fn, arg1); } -/* FN's prototype is `void(*fn)(int,int64_t)'. */ +/* FN's prototype is `void(*fn)(int,LONGEST)'. */ static void emit_void_call_2 (CORE_ADDR fn, int arg1) |