Commit de278246 by Daniel Berlin Committed by Daniel Berlin

tree-ssa-pre.c (phi_translate_set): Add constants to phi translation cache.

2008-10-16  Daniel Berlin  <dberlin@dberlin.org>

	* tree-ssa-pre.c (phi_translate_set): Add constants to phi
	translation cache.

From-SVN: r141182
parent afab92d8
2008-10-16 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-pre.c (phi_translate_set): Add constants to phi
translation cache.
2008-10-16 Joseph Myers <joseph@codesourcery.com>
PR c/33192
......
......@@ -1745,9 +1745,8 @@ phi_translate_set (bitmap_set_t dest, bitmap_set_t set, basic_block pred,
pre_expr translated;
translated = phi_translate (expr, set, NULL, pred, phiblock);
/* Don't add constants or empty translations to the cache, since
we won't look them up that way, or use the result, anyway. */
if (translated && !value_id_constant_p (get_expr_value_id (translated)))
/* Don't add empty translations to the cache */
if (translated)
phi_trans_add (expr, translated, pred);
if (translated != NULL)
......
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