Commit cc261f66 by Martin Liska Committed by Martin Liska

Fix a thinko in tree-ssa-loop.c.

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
parent b8e2acff
2019-06-07 Martin Liska <mliska@suse.cz> 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 PR tree-optimization/78902
* builtin-attrs.def (ATTR_WARN_UNUSED_RESULT): New. * builtin-attrs.def (ATTR_WARN_UNUSED_RESULT): New.
(ATTR_MALLOC_NOTHROW_LEAF_LIST): Remove. (ATTR_MALLOC_NOTHROW_LEAF_LIST): Remove.
......
...@@ -768,9 +768,9 @@ get_lsm_tmp_name (tree ref, unsigned n, const char *suffix) ...@@ -768,9 +768,9 @@ get_lsm_tmp_name (tree ref, unsigned n, const char *suffix)
ns[1] = 0; ns[1] = 0;
lsm_tmp_name_add (ns); lsm_tmp_name_add (ns);
} }
return lsm_tmp_name;
if (suffix != NULL) if (suffix != NULL)
lsm_tmp_name_add (suffix); lsm_tmp_name_add (suffix);
return lsm_tmp_name;
} }
/* Computes an estimated number of insns in LOOP, weighted by WEIGHTS. */ /* Computes an estimated number of insns in LOOP, weighted by WEIGHTS. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment