summaryrefslogtreecommitdiffstats
path: root/sim/ppc/sim_calls.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1997-10-02 23:37:30 +0000
committerAndrew Cagney <cagney@redhat.com>1997-10-02 23:37:30 +0000
commit63fe2cc799d36a834c5606a9170799ed818410d7 (patch)
tree874c914ad0d536e15e7a68ecd6d34fd20c816fe7 /sim/ppc/sim_calls.c
parent46d2f9e1d69bfe0518b0f7e7421e66ce26a9e9f3 (diff)
downloadppe42-binutils-63fe2cc799d36a834c5606a9170799ed818410d7.tar.gz
ppe42-binutils-63fe2cc799d36a834c5606a9170799ed818410d7.zip
Fix typo, WITH_TARGET_WORD_BITSIZE not WITH_TARGET_BITSIZE.
Diffstat (limited to 'sim/ppc/sim_calls.c')
-rw-r--r--sim/ppc/sim_calls.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sim/ppc/sim_calls.c b/sim/ppc/sim_calls.c
index 7b6c4d477d..4d73291c05 100644
--- a/sim/ppc/sim_calls.c
+++ b/sim/ppc/sim_calls.c
@@ -200,6 +200,10 @@ sim_create_inferior (SIM_DESC sd,
unsigned_word entry_point;
TRACE(trace_gdb, ("sim_create_inferior(start_address=0x%x, ...)\n",
entry_point));
+
+ if (simulator == NULL)
+ error ("No program loaded");
+
if (abfd != NULL)
entry_point = bfd_get_start_address (abfd);
else
@@ -369,7 +373,7 @@ sim_io_flush_stdoutput(void)
{
switch (CURRENT_STDIO) {
case DO_USE_STDIO:
- gdb_flush (gdb_stdout);
+ callbacks->flush_stdout (callbacks);
break;
case DONT_USE_STDIO:
break;
@@ -393,5 +397,5 @@ zalloc(long size)
void zfree(void *data)
{
- mfree(NULL, data);
+ free(NULL, data);
}
OpenPOWER on IntegriCloud