Remove unnecessary inferior lookup in inferior_command

In the case where we switch to a non-running inferior, we do a
"find_inferior_id (num)", although we did the same call right before.

gdb/ChangeLog:

	* inferior.c (inferior_command): Remove duplicate
	find_inferior_id call.
This commit is contained in:
Simon Marchi 2016-12-06 16:19:33 -05:00
parent 4f3ca05b48
commit 5590c2bae0
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2016-12-06 Simon Marchi <simon.marchi@ericsson.com>
* inferior.c (inferior_command): Remove duplicate
find_inferior_id call.
2016-12-06 Yao Qi <yao.qi@linaro.org>
* frame.c (frame_register_unwind): Set *realnump if *lvalp is

View File

@ -763,9 +763,6 @@ inferior_command (char *args, int from_tty)
}
else
{
struct inferior *inf;
inf = find_inferior_id (num);
set_current_inferior (inf);
switch_to_thread (null_ptid);
set_current_program_space (inf->pspace);