diff options
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 50f0f42..9a23c8f 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -17,27 +17,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" - -/* Standard C++ includes. */ -#include <algorithm> - -/* Local non-gdb includes. */ -#include "addrmap.h" -#include "bfd.h" -#include "block.h" #include "buildsym-legacy.h" -#include "complaints.h" -#include "cp-support.h" -#include "demangle.h" -#include "dictionary.h" -#include "expression.h" -#include "filenames.h" +#include "bfd.h" #include "gdb_obstack.h" +#include "symtab.h" +#include "symfile.h" +#include "objfiles.h" #include "gdbtypes.h" +#include "complaints.h" +#include "expression.h" /* For "enum exp_opcode" used by... */ +#include "filenames.h" /* For DOSish file names. */ #include "macrotab.h" -#include "objfiles.h" -#include "symfile.h" -#include "symtab.h" +#include "demangle.h" /* Needed by SYMBOL_INIT_DEMANGLED_NAME. */ +#include "block.h" +#include "cp-support.h" +#include "dictionary.h" +#include "addrmap.h" +#include <algorithm> /* For cleanup_undefined_stabs_types and finish_global_stabs (somewhat questionable--see comment where we call them). */ |