use bound_minsym as result for lookup_minimal_symbol et al
[deliverable/binutils-gdb.git] / gdb / sol2-tdep.c
index 27108a5d502994f3e5c71ccd5ea6ad13670a0ca4..a4efd42acf369188255bb07f4750f913e78b1293 100644 (file)
 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 && MSYMBOL_VALUE_ADDRESS (msym.minsym) == pc)
     return frame_unwind_caller_pc (get_current_frame ());
 
   return 0;
This page took 0.02492 seconds and 4 git commands to generate.