From: Simon Marchi Date: Mon, 6 Feb 2023 19:12:27 +0000 (-0500) Subject: gdb: adjust comment on target_desc_info::from_user_p X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9b677528fdde6b1d5f402b75db2efcbe62c93d8;p=binutils-gdb.git gdb: adjust comment on target_desc_info::from_user_p Remove the stale reference to INFO, which is now "this target description info" now. Change-Id: I35dbdb089048ed7cfffe730d3134ee391b176abf --- diff --git a/gdb/inferior.h b/gdb/inferior.h index bac483f0f78..72034cc4ffb 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -345,7 +345,7 @@ extern void switch_to_inferior_no_thread (inferior *inf); struct target_desc_info { - /* Returns true if INFO indicates the target description had been supplied by + /* Returns true if this target description information has been supplied by the user. */ bool from_user_p () { return !this->filename.empty (); }