This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Dead code at gcc/tree-ssa-loop.c:772?
- From: Martin Liška <mliska at suse dot cz>
- To: amacleod at redhat dot com
- Cc: GCC Development <gcc at gcc dot gnu dot org>
- Date: Thu, 6 Jun 2019 12:20:59 +0200
- Subject: 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