This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH, committed] remove trivialy unused variables


tbsaunde+binutils@tbsaunde.org writes:

> diff --git a/gdb/linespec.c b/gdb/linespec.c
> index 2360cc1..c0c3b3b3 100644
> --- a/gdb/linespec.c
> +++ b/gdb/linespec.c
> @@ -845,8 +845,6 @@ add_sal_to_sals (struct linespec_state *self,
>        canonical = &self->canonical_names[sals->nelts - 1];
>        if (!literal_canonical && sal->symtab)
>  	{
> -	  const char *fullname = symtab_to_fullname (sal->symtab);
> -


Variable fullname isn't used, but I am not sure we can remove the call
to symtab_to_fullname.  At least, symtab_to_fullname sets
sal->symtab->fullname, and we have this some lines below,

	  canonical->symtab = sal->symtab;

-- 
Yao (éå)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]