gdb/
[deliverable/binutils-gdb.git] / gdb / symtab.h
index 29e7d703b9ed8a95fd009c6f061814a1343459e9..12f52a21dc4a0312801bb8842ae1b28b298816ab 100644 (file)
@@ -770,7 +770,13 @@ struct symtab
      should be designated the primary, so that the blockvector
      is relocated exactly once by objfile_relocate.  */
 
-  int primary;
+  unsigned int primary : 1;
+
+  /* Symtab has been compiled with both optimizations and debug info so that
+     GDB may stop skipping prologues as variables locations are valid already
+     at function entry points.  */
+
+  unsigned int locations_valid : 1;
 
   /* The macro table for this symtab.  Like the blockvector, this
      may be shared between different symtabs --- and normally is for
This page took 0.041703 seconds and 4 git commands to generate.