diff options
author | Stu Grossman <grossman@cygnus> | 1995-09-15 00:41:32 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1995-09-15 00:41:32 +0000 |
commit | 0672384c2753e3b9d728450a84da4a51534b2f0b (patch) | |
tree | 40bed9f9ffc2ed944aa3bac1b25b4724c9242a15 /gdb | |
parent | ee90dcc2dcfce16f97fa69a0461aea38b85cc698 (diff) | |
download | gdb-0672384c2753e3b9d728450a84da4a51534b2f0b.zip gdb-0672384c2753e3b9d728450a84da4a51534b2f0b.tar.gz gdb-0672384c2753e3b9d728450a84da4a51534b2f0b.tar.bz2 |
* remote-sim.c (gdbsim_create_inferior): Back out change that
broke all simulator configurations except the rs6000.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/remote-sim.c | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 848753b..b6e5ffc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 14 17:35:24 1995 Stu Grossman (grossman@cygnus.com) + + * remote-sim.c (gdbsim_create_inferior): Back out change that + broke all simulator configurations except the rs6000. + Thu Sep 14 14:44:59 1995 Jeffrey A. Law <law@rtl.cygnus.com> * monitor.c (monitor_expect): Discard NULL characters. diff --git a/gdb/remote-sim.c b/gdb/remote-sim.c index f2df37a..813f212 100644 --- a/gdb/remote-sim.c +++ b/gdb/remote-sim.c @@ -200,12 +200,6 @@ gdbsim_create_inferior (exec_file, args, env) inferior_pid = 42; insert_breakpoints (); /* Needed to get correct instruction in cache */ - - /* FIXME: This needs to be done in a target-specific fashion. - What you see here works for the PPC simulator tiemann 9/9/1995. - Also, the fact that we can find the addresses for breakpoints without - this mechanism suggests some redundant code that could be merged. */ - add_text_to_loadinfo (entry_pt, entry_pt+exec_bfd->sections->_cooked_size); proceed (entry_pt, TARGET_SIGNAL_DEFAULT, 0); } |