* gas/testsuite/all/gas.exp: No longer expect failures for
[deliverable/binutils-gdb.git] / gdb / nindy-tdep.c
index b609fd7971bf83d2db5d57e930b1918fe4466662..3fccd4f867f1494c2c33d35e48a5e7fe07539486 100644 (file)
@@ -6,8 +6,8 @@ This file is part of GDB.
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
-any later version.
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -15,17 +15,16 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with this program; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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"
+#include "gdbcore.h"
 
 /* 'start_frame' is a variable in the NINDY runtime startup routine
    that contains the frame pointer of the 'start' routine (the routine
@@ -36,10 +35,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 int
 nindy_frame_chain_valid (chain, curframe)
     unsigned int chain;
-    FRAME curframe;
+    struct frame_info *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;
@@ -63,14 +62,12 @@ nindy_frame_chain_valid (chain, curframe)
        sym = lookup_symbol(sf, 0, VAR_NAMESPACE, (int *)NULL, 
                                  (struct symtab **)NULL);
        if ( sym != 0 ){
-               a = sym->value.value;
+               a = SYMBOL_VALUE (sym);
        } 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, NULL, NULL);
+               if (msymbol == NULL)
+                       return 0;
+               a = SYMBOL_VALUE_ADDRESS (msymbol);
        }
 
        return ( chain != read_memory_integer(a,4) );
This page took 0.054761 seconds and 4 git commands to generate.