diff options
author | Tom Tromey <tom@tromey.com> | 2019-09-24 17:52:08 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-09-26 07:35:00 -0600 |
commit | 12904d3729fd027714bac97a6b8c28437c37c173 (patch) | |
tree | 0b2beb929bb6434a16ef55297279c86acb78f78d /gdb/ChangeLog | |
parent | 41f37a6fb71f2a3de388108f5cdfca9cbe6e9d51 (diff) | |
download | gdb-12904d3729fd027714bac97a6b8c28437c37c173.zip gdb-12904d3729fd027714bac97a6b8c28437c37c173.tar.gz gdb-12904d3729fd027714bac97a6b8c28437c37c173.tar.bz2 |
Remove initialize_utils
initialize_utils only registers some commands, so it isn't necessary
to run it at any particular time during startup. This patch removes
it and merges its contents into _initialize_utils.
Tested by the buildbot.
gdb/ChangeLog
2019-09-26 Tom Tromey <tom@tromey.com>
* utils.h (initialize_utils): Don't declare.
* top.c (gdb_init): Don't call initialize_utils.
* utils.c (initialize_utils): Remove. Move contents...
(_initialize_utils): ... here.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 81f5785..bc6c203 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2019-09-26 Tom Tromey <tom@tromey.com> + + * utils.h (initialize_utils): Don't declare. + * top.c (gdb_init): Don't call initialize_utils. + * utils.c (initialize_utils): Remove. Move contents... + (_initialize_utils): ... here. + 2019-09-25 Tom Tromey <tom@tromey.com> * python/py-objfile.c (objfpy_get_build_id): Use bin2hex. |