diff options
Diffstat (limited to 'gdb/frame.c')
-rw-r--r-- | gdb/frame.c | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index 9b8f0bc..d8b5f81 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -18,32 +18,30 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" - -/* Local non-gdb includes. */ -#include "annotate.h" -#include "block.h" -#include "command.h" -#include "dummy-frame.h" -#include "frame-base.h" -#include "frame-unwind.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 "gdbcmd.h" +#include "dummy-frame.h" +#include "sentinel-frame.h" #include "gdbcore.h" -#include "gdbthread.h" -#include "hashtab.h" -#include "inferior.h" -#include "inline-frame.h" +#include "annotate.h" #include "language.h" -#include "objfiles.h" +#include "frame-unwind.h" +#include "frame-base.h" +#include "command.h" +#include "gdbcmd.h" #include "observable.h" -#include "regcache.h" -#include "sentinel-frame.h" -#include "target.h" +#include "objfiles.h" +#include "gdbthread.h" +#include "block.h" +#include "inline-frame.h" #include "tracepoint.h" -#include "user-regs.h" +#include "hashtab.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 |