* psympriv.h (struct partial_symtab) <readin>: Move field

earlier.
This commit is contained in:
Tom Tromey 2010-12-17 17:19:36 +00:00
parent e8ef21bff5
commit 900c7f9d20
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-12-17 Tom Tromey <tromey@redhat.com>
* psympriv.h (struct partial_symtab) <readin>: Move field
earlier.
2010-12-16 Kevin Buettner <kevinb@redhat.com>
* mips-tdep.c (mips_convert_register_float_case_p)

View File

@ -129,6 +129,12 @@ struct partial_symtab
int statics_offset;
int n_static_syms;
/* Non-zero if the symtab corresponding to this psymtab has been
readin. This is located here so that this structure packs better
on 64-bit systems. */
unsigned char readin;
/* Pointer to symtab eventually allocated for this source file, 0 if
!readin or if we haven't looked for the symtab after it was readin. */
@ -145,10 +151,6 @@ struct partial_symtab
the various symbol reading modules. */
void *read_symtab_private;
/* Non-zero if the symtab corresponding to this psymtab has been readin */
unsigned char readin;
};
extern void sort_pst_symbols (struct partial_symtab *);