Eliminate literal line numbers in shlib-call.exp
[deliverable/binutils-gdb.git] / gdb / sol2-tdep.c
index 27108a5d502994f3e5c71ccd5ea6ad13670a0ca4..bf7d6a128f13c3088de2715632710d34e97404a9 100644 (file)
 #include "frame.h"
 #include "symtab.h"
 #include "inferior.h"
+#include "objfiles.h"
 
 #include "sol2-tdep.h"
 
 CORE_ADDR
 sol2_skip_solib_resolver (struct gdbarch *gdbarch, CORE_ADDR pc)
 {
-  struct minimal_symbol *msym;
+  struct bound_minimal_symbol msym;
 
   msym = lookup_minimal_symbol("elf_bndr", NULL, NULL);
-  if (msym && MSYMBOL_VALUE_ADDRESS (msym) == pc)
+  if (msym.minsym && BMSYMBOL_VALUE_ADDRESS (msym) == pc)
     return frame_unwind_caller_pc (get_current_frame ());
 
   return 0;
This page took 0.025738 seconds and 4 git commands to generate.