Joel Sherrill (joel@OARcorp.com)
[deliverable/binutils-gdb.git] / gdb / nindy-tdep.c
index 03a67c8b378ec2f45ebbb99f52f969a043e8d1d0..2e0b10c6a94f6e3eb440d893f5ac93ed7cef7275 100644 (file)
@@ -16,7 +16,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 /* Miscellaneous NINDY-dependent routines.
    Some replace macros normally defined in "tm.h".  */
@@ -24,6 +24,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "defs.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
@@ -33,7 +34,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 int
 nindy_frame_chain_valid (chain, curframe)
-    unsigned int chain;
+    CORE_ADDR chain;
     struct frame_info *curframe;
 {
        struct symbol *sym;
@@ -63,7 +64,7 @@ nindy_frame_chain_valid (chain, curframe)
        if ( sym != 0 ){
                a = SYMBOL_VALUE (sym);
        } else {
-               msymbol = lookup_minimal_symbol (sf, (struct objfile *) NULL);
+               msymbol = lookup_minimal_symbol (sf, NULL, NULL);
                if (msymbol == NULL)
                        return 0;
                a = SYMBOL_VALUE_ADDRESS (msymbol);
This page took 0.023684 seconds and 4 git commands to generate.