diff options
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 0a8bbd3..f536056 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -252,6 +252,11 @@ struct objfile struct obstack symbol_obstack; /* Full symbols */ struct obstack type_obstack; /* Types */ + /* A byte cache where we can stash arbitrary "chunks" of bytes that + will not change. */ + + struct bcache psymbol_cache; /* Byte cache for partial syms */ + /* Vectors of all partial symbols read in from file. The actual data is stored in the psymbol_obstack. */ |