aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2018-04-29 23:12:07 -0600
committerTom Tromey <tom@tromey.com>2018-05-25 12:41:01 -0600
commitda505cff6e29b18244dc9f6886bcb4d436263dee (patch)
tree14ff1a222df1429bb31f1cd9bd50806b872efd6a /gdb
parent29f943408122a7cffa25abb41def99833436f097 (diff)
downloadgdb-da505cff6e29b18244dc9f6886bcb4d436263dee.zip
gdb-da505cff6e29b18244dc9f6886bcb4d436263dee.tar.gz
gdb-da505cff6e29b18244dc9f6886bcb4d436263dee.tar.bz2
Remove interp_name
This removes the interp_name function. It is only used a few spots -- one of which was only calling it on "this". It's simpler to remove it; and should class interp become opaque in the future, it will be just as easy to update the two remaining spots to use an accessor. ChangeLog 2018-05-25 Tom Tromey <tom@tromey.com> * interps.c (interp_name): Remove. * mi/mi-interp.c (mi_interp::init): Update. * interps.h (interp_name): Remove. (~scoped_restore_interp): Update. * tui/tui.c (tui_enable): Update.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog8
-rw-r--r--gdb/interps.c8
-rw-r--r--gdb/interps.h4
-rw-r--r--gdb/mi/mi-interp.c2
-rw-r--r--gdb/tui/tui.c2
5 files changed, 10 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 5cd551a..0bf350c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,13 @@
2018-05-25 Tom Tromey <tom@tromey.com>
+ * interps.c (interp_name): Remove.
+ * mi/mi-interp.c (mi_interp::init): Update.
+ * interps.h (interp_name): Remove.
+ (~scoped_restore_interp): Update.
+ * tui/tui.c (tui_enable): Update.
+
+2018-05-25 Tom Tromey <tom@tromey.com>
+
* utils.c (fputs_maybe_filtered): Update.
* linespec.c (decode_line_full): Update.
* mi/mi-interp.c (mi_on_normal_stop_1, mi_tsv_modified)
diff --git a/gdb/interps.c b/gdb/interps.c
index 5884625..8ec9744 100644
--- a/gdb/interps.c
+++ b/gdb/interps.c
@@ -274,14 +274,6 @@ scoped_restore_interp::set_interp (const char *name)
return old_interp;
}
-/* Returns the interpreter's name. */
-
-const char *
-interp_name (struct interp *interp)
-{
- return interp->name;
-}
-
/* Returns true if the current interp is the passed in name. */
int
current_interp_named_p (const char *interp_name)
diff --git a/gdb/interps.h b/gdb/interps.h
index 694149a..a689be5 100644
--- a/gdb/interps.h
+++ b/gdb/interps.h
@@ -98,8 +98,6 @@ extern struct interp *interp_lookup (struct ui *ui, const char *name);
interpreter fails to initialize. */
extern void set_top_level_interpreter (const char *name);
-extern const char *interp_name (struct interp *interp);
-
/* Temporarily set the current interpreter, and reset it on
destruction. */
class scoped_restore_interp
@@ -113,7 +111,7 @@ public:
~scoped_restore_interp ()
{
- set_interp (interp_name (m_interp));
+ set_interp (m_interp->name);
}
scoped_restore_interp (const scoped_restore_interp &) = delete;
diff --git a/gdb/mi/mi-interp.c b/gdb/mi/mi-interp.c
index 99ce1eb..e52d797 100644
--- a/gdb/mi/mi-interp.c
+++ b/gdb/mi/mi-interp.c
@@ -113,7 +113,6 @@ void
mi_interp::init (bool top_level)
{
mi_interp *mi = this;
- const char *name;
int mi_version;
/* Store the current output channel, so that we can create a console
@@ -129,7 +128,6 @@ mi_interp::init (bool top_level)
mi->targ = new mi_console_file (mi->raw_stdout, "@", '"');
mi->event_channel = new mi_console_file (mi->raw_stdout, "=", 0);
- name = interp_name (this);
/* INTERP_MI selects the most recent released version. "mi2" was
released as part of GDB 6.0. */
if (strcmp (name, INTERP_MI) == 0)
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c
index 7943a61..9e2520b 100644
--- a/gdb/tui/tui.c
+++ b/gdb/tui/tui.c
@@ -415,7 +415,7 @@ tui_enable (void)
/* If the top level interpreter is not the console/tui (e.g.,
MI), enabling curses will certainly lose. */
- interp = interp_name (top_level_interpreter ());
+ interp = top_level_interpreter ()->name;
if (strcmp (interp, INTERP_TUI) != 0)
error (_("Cannot enable the TUI when the interpreter is '%s'"), interp);