diff options
Diffstat (limited to 'gdb/frame.c')
-rw-r--r-- | gdb/frame.c | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index d8b5f81..9b8f0bc 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -18,30 +18,32 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #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 "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 "frame.h" +#include "gdb_obstack.h" #include "gdbcmd.h" -#include "observable.h" -#include "objfiles.h" +#include "gdbcore.h" #include "gdbthread.h" -#include "block.h" +#include "hashtab.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 |