This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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]

Dead code at gcc/tree-ssa-loop.c:772?


Hi.

The code is dead:

   757	char *
   758	get_lsm_tmp_name (tree ref, unsigned n, const char *suffix)
   759	{
   760	  char ns[2];
   761	
   762	  lsm_tmp_name_length = 0;
   763	  gen_lsm_tmp_name (ref);
   764	  lsm_tmp_name_add ("_lsm");
   765	  if (n < 10)
   766	    {
   767	      ns[0] = '0' + n;
   768	      ns[1] = 0;
   769	      lsm_tmp_name_add (ns);
   770	    }
   771	  return lsm_tmp_name;
   772	  if (suffix != NULL)
   773	    lsm_tmp_name_add (suffix);
   774	}

Andrew is it a typo or an issue?
Thanks,
Martin


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