aboutsummaryrefslogtreecommitdiff
path: root/sim/common
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@redhat.com>2001-04-19 20:59:30 +0000
committerFrank Ch. Eigler <fche@redhat.com>2001-04-19 20:59:30 +0000
commit6ec9f4a9be9ea349ba7614ea564052c30e5ce2e4 (patch)
tree02ed4efd923191705c7abcb9b1fabe7cfbff37e7 /sim/common
parent539ffe0b42135dbf2714c3bb836aad493c7081a3 (diff)
downloadfsf-binutils-gdb-6ec9f4a9be9ea349ba7614ea564052c30e5ce2e4.zip
fsf-binutils-gdb-6ec9f4a9be9ea349ba7614ea564052c30e5ce2e4.tar.gz
fsf-binutils-gdb-6ec9f4a9be9ea349ba7614ea564052c30e5ce2e4.tar.bz2
* bug fix
2001-04-19 Frank Ch. Eigler <fche@redhat.com> * sim-utils.c (sim_analyze_program): Call bfd_cache_close after we're finished with its immediate use. * sim-load.c (sim_load_file): Ditto.
Diffstat (limited to 'sim/common')
-rw-r--r--sim/common/ChangeLog6
-rw-r--r--sim/common/sim-load.c2
-rw-r--r--sim/common/sim-utils.c2
3 files changed, 10 insertions, 0 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index 7ca57e7..fec1133 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,9 @@
+2001-04-19 Frank Ch. Eigler <fche@redhat.com>
+
+ * sim-utils.c (sim_analyze_program): Call bfd_cache_close after
+ we're finished with its immediate use.
+ * sim-load.c (sim_load_file): Ditto.
+
2001-03-16 Frank Ch. Eigler <fche@redhat.com>
Add support for mmap-based memory regions.
diff --git a/sim/common/sim-load.c b/sim/common/sim-load.c
index 22fb33b..bfe3f15 100644
--- a/sim/common/sim-load.c
+++ b/sim/common/sim-load.c
@@ -166,6 +166,8 @@ sim_load_file (sd, myname, callback, prog, prog_bfd, verbose_p, lma_p, do_write)
report_transfer_performance (callback, data_count, start_time, end_time);
}
+ bfd_cache_close (result_bfd);
+
return result_bfd;
}
diff --git a/sim/common/sim-utils.c b/sim/common/sim-utils.c
index 3adbae5..6184f1b 100644
--- a/sim/common/sim-utils.c
+++ b/sim/common/sim-utils.c
@@ -287,6 +287,8 @@ sim_analyze_program (sd, prog_name, prog_bfd)
break;
}
+ bfd_cache_close (prog_bfd);
+
return SIM_RC_OK;
}