diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:31:27 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:42 -0700 |
commit | 71a9f134da16fda6094f7cbab121ea62dbfb78d9 (patch) | |
tree | 977629a780b07813fb4b6689024c90f0f3e32c0d /gdb/m32r-rom.c | |
parent | 0a4f40a208644744287b3e3a080416aede202633 (diff) | |
download | gdb-71a9f134da16fda6094f7cbab121ea62dbfb78d9.zip gdb-71a9f134da16fda6094f7cbab121ea62dbfb78d9.tar.gz gdb-71a9f134da16fda6094f7cbab121ea62dbfb78d9.tar.bz2 |
Add target_ops argument to to_load
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_load>: Add argument.
* target.c (target_load): Add argument.
(debug_to_load): Add argument.
(update_current_target): Update.
* remote.c (remote_load): Add 'self' argument.
* remote-sim.c (gdbsim_load): Add 'self' argument.
* remote-mips.c (mips_load): Add 'self' argument.
* remote-m32r-sdi.c (m32r_load): Add 'self' argument.
* monitor.c (monitor_load): Add 'self' argument.
* m32r-rom.c (m32r_load_gen): Add 'self' argument.
Diffstat (limited to 'gdb/m32r-rom.c')
-rw-r--r-- | gdb/m32r-rom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c index 6219891..2ca23ae 100644 --- a/gdb/m32r-rom.c +++ b/gdb/m32r-rom.c @@ -196,7 +196,7 @@ m32r_load (char *filename, int from_tty) } static void -m32r_load_gen (char *filename, int from_tty) +m32r_load_gen (struct target_ops *self, char *filename, int from_tty) { generic_load (filename, from_tty); } |