summaryrefslogtreecommitdiff
path: root/gdb/parse.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-03-30 11:29:17 -0600
committerTom Tromey <tom@tromey.com>2019-03-30 11:36:53 -0600
commit268f4c4cd7b229f7f23ebbf6006973ebe0a05888 (patch)
treec97516c90aa5bf6ccb54c494c275339d42dc03aa /gdb/parse.c
parentae2b14c73cd42b067e9687219155ed044210f0c1 (diff)
downloadbinutils-gdb-users/tromey/sort-includes.tar.gz
Diffstat (limited to 'gdb/parse.c')
-rw-r--r--gdb/parse.c34
1 files changed, 21 insertions, 13 deletions
diff --git a/gdb/parse.c b/gdb/parse.c
index 63cbc746aaa..b4aa0bf2c06 100644
--- a/gdb/parse.c
+++ b/gdb/parse.c
@@ -30,27 +30,35 @@
come first in the result. */
#include "defs.h"
+
+/* Standard C includes. */
#include <ctype.h>
+
+/* Standard C++ includes. */
+#include <algorithm>
+
+/* Local subdirectory includes. */
+#include "common/gdb_optional.h"
+
+/* Local includes. */
#include "arch-utils.h"
-#include "symtab.h"
-#include "gdbtypes.h"
-#include "frame.h"
-#include "expression.h"
-#include "value.h"
+#include "block.h"
#include "command.h"
-#include "language.h"
+#include "expression.h"
#include "f-lang.h"
-#include "parser-defs.h"
+#include "frame.h"
#include "gdbcmd.h"
-#include "symfile.h" /* for overlay functions */
+#include "gdbtypes.h"
#include "inferior.h"
-#include "target-float.h"
-#include "block.h"
-#include "source.h"
+#include "language.h"
#include "objfiles.h"
+#include "parser-defs.h"
+#include "source.h"
+#include "symfile.h"
+#include "symtab.h"
+#include "target-float.h"
#include "user-regs.h"
-#include <algorithm>
-#include "common/gdb_optional.h"
+#include "value.h"
/* Standard set of definitions for printing, dumping, prefixifying,
* and evaluating expressions. */