diff options
author | Kevin Buettner <kevinb@redhat.com> | 2012-03-03 01:23:45 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2012-03-03 01:23:45 +0000 |
commit | d98bfeb0233c622e936bdda16ff03277077f5ca2 (patch) | |
tree | e0a9fd593d3f088e78995b29fc3a2f33087f9ba1 /sim/rx/gdb-if.c | |
parent | 636b802b4e0e0bfa08745d20c468bac0a38e9fa1 (diff) | |
download | gdb-d98bfeb0233c622e936bdda16ff03277077f5ca2.zip gdb-d98bfeb0233c622e936bdda16ff03277077f5ca2.tar.gz gdb-d98bfeb0233c622e936bdda16ff03277077f5ca2.tar.bz2 |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c index 6f882d6..9a7e030 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); } |