summaryrefslogtreecommitdiff
path: root/sim/rx/gdb-if.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2012-03-03 01:23:45 +0000
committerKevin Buettner <kevinb@redhat.com>2012-03-03 01:23:45 +0000
commitd98bfeb0233c622e936bdda16ff03277077f5ca2 (patch)
treee0a9fd593d3f088e78995b29fc3a2f33087f9ba1 /sim/rx/gdb-if.c
parent636b802b4e0e0bfa08745d20c468bac0a38e9fa1 (diff)
Update rx sim so that it'll print load statistics.
Diffstat (limited to 'sim/rx/gdb-if.c')
-rw-r--r--sim/rx/gdb-if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c
index 6f882d686a..9a7e030d0d 100644
--- a/sim/rx/gdb-if.c
+++ b/sim/rx/gdb-if.c
@@ -201,7 +201,7 @@ sim_load (SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty)
if (!abfd)
return SIM_RC_FAIL;
- rx_load (abfd);
+ rx_load (abfd, get_callbacks ());
build_swap_list (abfd);
return SIM_RC_OK;
@@ -214,7 +214,7 @@ sim_create_inferior (SIM_DESC sd, struct bfd *abfd, char **argv, char **env)
if (abfd)
{
- rx_load (abfd);
+ rx_load (abfd, NULL);
build_swap_list (abfd);
}