diff options
author | Tom Tromey <tom@tromey.com> | 2019-03-30 11:29:17 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-03-30 11:36:53 -0600 |
commit | 268f4c4cd7b229f7f23ebbf6006973ebe0a05888 (patch) | |
tree | c97516c90aa5bf6ccb54c494c275339d42dc03aa /gdb/ada-lang.c | |
parent | ae2b14c73cd42b067e9687219155ed044210f0c1 (diff) | |
download | binutils-gdb-users/tromey/sort-includes.tar.gz |
the patchusers/tromey/sort-includes
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 77 |
1 files changed, 43 insertions, 34 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index cdaf5589bc4..09990b54e51 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -19,50 +19,59 @@ #include "defs.h" +#include "ada-lang.h" + +/* Standard C includes. */ #include <ctype.h> +#include <sys/stat.h> + +/* Standard C++ includes. */ +#include <algorithm> + +/* Local non-gdb includes. */ #include "demangle.h" -#include "gdb_regex.h" +#include "hashtab.h" + +/* Local subdirectory includes. */ +#include "cli/cli-utils.h" +#include "common/byte-vector.h" +#include "common/function-view.h" +#include "common/gdb_vecs.h" +#include "common/vec.h" +#include "mi/mi-common.h" + +/* Local includes. */ +#include "annotate.h" +#include "arch-utils.h" +#include "block.h" +#include "breakpoint.h" +#include "c-lang.h" +#include "completer.h" +#include "dictionary.h" +#include "expression.h" #include "frame.h" -#include "symtab.h" -#include "gdbtypes.h" +#include "gdb_obstack.h" +#include "gdb_regex.h" #include "gdbcmd.h" -#include "expression.h" -#include "parser-defs.h" -#include "language.h" -#include "varobj.h" -#include "c-lang.h" -#include "inferior.h" -#include "symfile.h" -#include "objfiles.h" -#include "breakpoint.h" #include "gdbcore.h" -#include "hashtab.h" -#include "gdb_obstack.h" -#include "ada-lang.h" -#include "completer.h" -#include <sys/stat.h> -#include "ui-out.h" -#include "block.h" +#include "gdbtypes.h" #include "infcall.h" -#include "dictionary.h" -#include "annotate.h" -#include "valprint.h" -#include "source.h" +#include "inferior.h" +#include "language.h" +#include "namespace.h" +#include "objfiles.h" #include "observable.h" -#include "common/vec.h" +#include "parser-defs.h" +#include "psymtab.h" +#include "source.h" #include "stack.h" -#include "common/gdb_vecs.h" +#include "symfile.h" +#include "symtab.h" #include "typeprint.h" -#include "namespace.h" - -#include "psymtab.h" +#include "ui-out.h" +#include "valprint.h" #include "value.h" -#include "mi/mi-common.h" -#include "arch-utils.h" -#include "cli/cli-utils.h" -#include "common/function-view.h" -#include "common/byte-vector.h" -#include <algorithm> +#include "varobj.h" /* Define whether or not the C operator '/' truncates towards zero for differently signed operands (truncation direction is undefined in C). |