Commit 657c0925 by Jan Hubicka Committed by Jan Hubicka

tree-inline.c (tree_function_versioning): Look harder for referenced vars.

	* tree-inline.c (tree_function_versioning): Look harder
	for referenced vars.

From-SVN: r139542
parent 692daa90
2008-08-24 Jan Hubicka <jh@suse.cz>
* tree-inline.c (tree_function_versioning): Look harder
for referenced vars.
2008-08-24 Razya Ladelsky <razya@il.ibm.com>
PR tree-optimization/37185
......
......@@ -4223,9 +4223,16 @@ tree_function_versioning (tree old_decl, tree new_decl, varray_type tree_map,
= (struct ipa_replace_map *) VARRAY_GENERIC_PTR (tree_map, i);
if (replace_info->replace_p)
{
if (TREE_CODE (replace_info->new_tree) == ADDR_EXPR)
tree op = replace_info->new_tree;
STRIP_NOPS (op);
if (TREE_CODE (op) == VIEW_CONVERT_EXPR)
op = TREE_OPERAND (op, 0);
if (TREE_CODE (op) == ADDR_EXPR)
{
tree op = TREE_OPERAND (replace_info->new_tree, 0);
op = TREE_OPERAND (op, 0);
while (handled_component_p (op))
op = TREE_OPERAND (op, 0);
if (TREE_CODE (op) == VAR_DECL)
......
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