* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / symtab.h
index 24a807ab2b9d48a0d9466b6912a1c778ac49ac6f..cd1ad34ee2e686976fb77f4c2d644b40963f5d97 100644 (file)
@@ -64,7 +64,7 @@ struct general_symbol_info
       /* The fact that this is a long not a LONGEST mainly limits the
         range of a LOC_CONST.  Since LOC_CONST_BYTES exists, I'm not
         sure that is a big deal.  */
-      long value;
+      long ivalue;
 
       struct block *block;
 
@@ -110,7 +110,7 @@ struct general_symbol_info
 };
 
 #define SYMBOL_NAME(symbol)            (symbol)->ginfo.name
-#define SYMBOL_VALUE(symbol)           (symbol)->ginfo.value.value
+#define SYMBOL_VALUE(symbol)           (symbol)->ginfo.value.ivalue
 #define SYMBOL_VALUE_ADDRESS(symbol)   (symbol)->ginfo.value.address
 #define SYMBOL_VALUE_BYTES(symbol)     (symbol)->ginfo.value.bytes
 #define SYMBOL_BLOCK_VALUE(symbol)     (symbol)->ginfo.value.block
This page took 0.023112 seconds and 4 git commands to generate.