A ton of changes to improve C++ debugging. See ChangeLog.
[deliverable/binutils-gdb.git] / gdb / nindy-tdep.c
index 7243fbe1497d4dc696731b0607a9de40b4471d43..1d31601b65939817f57dfa9f648b44fafb001406 100644 (file)
@@ -21,9 +21,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 /* Miscellaneous NINDY-dependent routines.
    Some replace macros normally defined in "tm.h".  */
 
-#include <stdio.h>
 #include "defs.h"
-#include "param.h"
 #include "symtab.h"
 #include "frame.h"
 
@@ -39,7 +37,7 @@ nindy_frame_chain_valid (chain, curframe)
     FRAME curframe;
 {
        struct symbol *sym;
-       int i;
+       struct minimal_symbol *msymbol;
 
        /* crtnindy.o is an assembler module that is assumed to be linked
         * first in an i80960 executable.  It contains the true entry point;
@@ -65,12 +63,10 @@ nindy_frame_chain_valid (chain, curframe)
        if ( sym != 0 ){
                a = sym->value.value;
        } else {
-               for ( i = 0; strcmp(misc_function_vector[i].name,sf); i++ ){
-                       if ( i >= misc_function_count ){
-                               return 0;
-                       }
-               }
-               a = misc_function_vector[i].address;
+               msymbol = lookup_minimal_symbol (sf, (struct objfile *) NULL);
+               if (msymbol == NULL)
+                       return 0;
+               a = msymbol -> address;
        }
 
        return ( chain != read_memory_integer(a,4) );
This page took 0.023497 seconds and 4 git commands to generate.