diff options
author | Pierre-Marie de Rodat <derodat@adacore.com> | 2015-08-01 11:25:44 +0200 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-08-02 19:01:51 +0100 |
commit | 835a09d99d585bfdc9f760970908e10bd8b2fec2 (patch) | |
tree | 12f611c8fd3fc81bd1fec93d6fab416cbb22a164 /gdb/xstormy16-tdep.c | |
parent | 5e99d4b301d820e1622b35cfd4b359bb4ba264e6 (diff) | |
download | gdb-835a09d99d585bfdc9f760970908e10bd8b2fec2.zip gdb-835a09d99d585bfdc9f760970908e10bd8b2fec2.tar.gz gdb-835a09d99d585bfdc9f760970908e10bd8b2fec2.tar.bz2 |
Complete the previous commit (block_found refactoring)
The previous commit (Replace the block_found global with explicit
data-flow) lacks updates in a couple of files because it was not
tested building GDB with --enable-targets=all... but buildbots did.
This adds the appropriate simple updates to fix the build.
gdb/ChangeLog:
* alpha-mdebug-tdep.c (find_proc_desc): Update call to
lookup_symbol.
* ft32-tdep.c (ft32_skip_prologue): Likewise.
* moxie-tdep.c (moxie_skip_prologue): Likewise.
* mt-tdep.c (mt_skip_prologue): Likewise.
* xstormy16-tdep.c (xstormy16_skip_prologue): Likewise.
Diffstat (limited to 'gdb/xstormy16-tdep.c')
-rw-r--r-- | gdb/xstormy16-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xstormy16-tdep.c b/gdb/xstormy16-tdep.c index 4faad2e..05b3039 100644 --- a/gdb/xstormy16-tdep.c +++ b/gdb/xstormy16-tdep.c @@ -433,7 +433,7 @@ xstormy16_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc) return plg_end; /* Found a function. */ - sym = lookup_symbol (func_name, NULL, VAR_DOMAIN, NULL); + sym = lookup_symbol (func_name, NULL, VAR_DOMAIN, NULL).symbol; /* Don't use line number debug info for assembly source files. */ if (sym && SYMBOL_LANGUAGE (sym) != language_asm) { |