summaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorqiyao <qiyao>2013-04-07 10:23:33 +0000
committerqiyao <qiyao>2013-04-07 10:23:33 +0000
commit977adf676265eb8e95937f460ed1367ac3fa5243 (patch)
treef8bb4b48f58d578a0e1aff5e62eca4207572c0cb /gdb/remote.c
parent498e378f5881fface67d173c61157b79d90c9e94 (diff)
downloadgdb-977adf676265eb8e95937f460ed1367ac3fa5243.tar.gz
gdb/
* remote.c (remote_trace_find): Change type of parameters 'addr1' and 'addr2' to CORE_ADDR. * target.c (update_current_target): Update. * target.h (struct target_ops) <to_trace_find>: Change parameter type to CORE_ADDR. * tracepoint.c (tfind_1): Change type of parameters 'addr1' and 'addr2' to CORE_ADDR. (tfile_trace_find): Likewise. (tfile_get_traceframe_address): Change return type to CORE_ADDR. Change local variable 'addr' to type CORE_ADDR. * tracepoint.h (tfind_1): Update declaration.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r--gdb/remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index aefbcf13bbe..740324b5461 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -10808,7 +10808,7 @@ remote_trace_stop (void)
static int
remote_trace_find (enum trace_find_type type, int num,
- ULONGEST addr1, ULONGEST addr2,
+ CORE_ADDR addr1, CORE_ADDR addr2,
int *tpp)
{
struct remote_state *rs = get_remote_state ();