diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 17ebd6d42fe..2411dd1cdeb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2009-04-06 Richard Guenther + + PR tree-optimization/39643 + * tree-ssa-ccp.c (ccp_fold): Fold REALPART_EXPRs and + IMAGPART_EXPRs of complex constants. + (execute_fold_all_builtins): If we folded a call queue + TODO_update_address_taken. + 2009-04-06 Jan Hubicka PR middle-end/39659 diff --git a/gcc/tree-ssa-ccp.c b/gcc/tree-ssa-ccp.c index 6d8e88e6d33..2f396583b9a 100644 --- a/gcc/tree-ssa-ccp.c +++ b/gcc/tree-ssa-ccp.c @@ -949,12 +949,14 @@ ccp_fold (gimple stmt) if (kind == tcc_reference) { - if (TREE_CODE (rhs) == VIEW_CONVERT_EXPR + if ((TREE_CODE (rhs) == VIEW_CONVERT_EXPR + || TREE_CODE (rhs) == REALPART_EXPR + || TREE_CODE (rhs) == IMAGPART_EXPR) && TREE_CODE (TREE_OPERAND (rhs, 0)) == SSA_NAME) { prop_value_t *val = get_value (TREE_OPERAND (rhs, 0)); if (val->lattice_val == CONSTANT) - return fold_unary (VIEW_CONVERT_EXPR, + return fold_unary (TREE_CODE (rhs), TREE_TYPE (rhs), val->value); } else if (TREE_CODE (rhs) == INDIRECT_REF @@ -3270,7 +3272,10 @@ execute_fold_all_builtins (void) push_stmt_changes (gsi_stmt_ptr (&i)); if (!update_call_from_tree (&i, result)) - gimplify_and_update_call_from_tree (&i, result); + { + gimplify_and_update_call_from_tree (&i, result); + todoflags |= TODO_update_address_taken; + } stmt = gsi_stmt (i); pop_stmt_changes (gsi_stmt_ptr (&i));