Fix a thinko in tree-ssa-loop.c.
authorMartin Liska <mliska@suse.cz>
Fri, 7 Jun 2019 05:35:19 +0000 (07:35 +0200)
committerMartin Liska <marxin@gcc.gnu.org>
Fri, 7 Jun 2019 05:35:19 +0000 (05:35 +0000)
2019-06-07  Martin Liska  <mliska@suse.cz>

* tree-ssa-loop.c (get_lsm_tmp_name): Return at the end of the
function.

From-SVN: r272029

gcc/ChangeLog
gcc/tree-ssa-loop.c

index 7a21c939ac57d529170e3d278ecacd2ce9a5aad3..c37e315bfdf7b106188d9128beb7245bf30131ab 100644 (file)
@@ -1,3 +1,8 @@
+2019-06-07  Martin Liska  <mliska@suse.cz>
+
+       * tree-ssa-loop.c (get_lsm_tmp_name): Return at the end of the
+       function.
+
 2019-06-07  Martin Liska  <mliska@suse.cz>
 
        PR tree-optimization/78902
index 1ac6cee60b0eafcf5af09ad37ea3a7c9a5cb5cca..208c58354b48a3bcbee605b9aafc22eb6f7f966b 100644 (file)
@@ -768,9 +768,9 @@ get_lsm_tmp_name (tree ref, unsigned n, const char *suffix)
       ns[1] = 0;
       lsm_tmp_name_add (ns);
     }
-  return lsm_tmp_name;
   if (suffix != NULL)
     lsm_tmp_name_add (suffix);
+  return lsm_tmp_name;
 }
 
 /* Computes an estimated number of insns in LOOP, weighted by WEIGHTS.  */