diff options
Diffstat (limited to 'gdb/frame.c')
-rw-r--r-- | gdb/frame.c | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index d8b5f819f1d..72596127abd 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -19,29 +19,33 @@ #include "defs.h" #include "frame.h" -#include "target.h" -#include "value.h" -#include "inferior.h" /* for inferior_ptid */ -#include "regcache.h" -#include "user-regs.h" -#include "gdb_obstack.h" -#include "dummy-frame.h" -#include "sentinel-frame.h" -#include "gdbcore.h" + +/* Local non-gdb includes. */ +#include "hashtab.h" + +/* Local includes. */ #include "annotate.h" -#include "language.h" -#include "frame-unwind.h" -#include "frame-base.h" +#include "block.h" #include "command.h" +#include "dummy-frame.h" +#include "frame-base.h" +#include "frame-unwind.h" +#include "gdb_obstack.h" #include "gdbcmd.h" -#include "observable.h" -#include "objfiles.h" +#include "gdbcore.h" #include "gdbthread.h" -#include "block.h" +#include "inferior.h" #include "inline-frame.h" +#include "language.h" +#include "objfiles.h" +#include "observable.h" +#include "regcache.h" +#include "sentinel-frame.h" +#include "target.h" #include "tracepoint.h" -#include "hashtab.h" +#include "user-regs.h" #include "valprint.h" +#include "value.h" /* The sentinel frame terminates the innermost end of the frame chain. If unwound, it returns the information needed to construct an |