diff options
Diffstat (limited to 'sim/rl78')
-rw-r--r-- | sim/rl78/load.c | 2 | ||||
-rw-r--r-- | sim/rl78/trace.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sim/rl78/load.c b/sim/rl78/load.c index c8c8ab8..34ae923 100644 --- a/sim/rl78/load.c +++ b/sim/rl78/load.c @@ -56,7 +56,7 @@ find_section_name_by_offset (bfd *abfd, file_ptr filepos) for (s = abfd->sections; s; s = s->next) if (s->filepos == filepos) - return bfd_get_section_name (abfd, s); + return bfd_section_name (s); return "(unknown)"; } diff --git a/sim/rl78/trace.c b/sim/rl78/trace.c index fd999a1..1a97527 100644 --- a/sim/rl78/trace.c +++ b/sim/rl78/trace.c @@ -224,7 +224,7 @@ sim_get_current_source_location (const char ** pfilename, if (s->flags & SEC_CODE || code_section == 0) { code_section = s; - code_base = bfd_section_lma (current_bfd, s); + code_base = bfd_section_lma (s); break; } } |