* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / gdb / nindy-tdep.c
index 4996b53beb30304e7f1bf4d3ef8659f018c79e80..b296e069119f5f81d86942413e01d7f0f8267a68 100644 (file)
@@ -21,7 +21,6 @@ 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 "symtab.h"
 #include "frame.h"
@@ -62,12 +61,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 {
                msymbol = lookup_minimal_symbol (sf, (struct objfile *) NULL);
                if (msymbol == NULL)
                        return 0;
-               a = msymbol -> address;
+               a = SYMBOL_VALUE_ADDRESS (msymbol);
        }
 
        return ( chain != read_memory_integer(a,4) );
This page took 0.023212 seconds and 4 git commands to generate.