diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b591df8e882..8a4ccc0c03f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-07-13 Jan Hubicka + + * tree-ssa-operands.c (get_expr_operands): Fix typo in previous patch. + 2005-07-13 David Edelsohn * tree-ssa-dom.c (lookup_avail_expr): Do not pass member in freed diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 98b476683e6..f4eb109c5c7 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1326,7 +1326,7 @@ get_expr_operands (tree stmt, tree *expr_p, int flags) bool exact; if (overlap_subvar (offset, size, sv, &exact)) { - bool subvar_flags = flags; + int subvar_flags = flags; if (!exact) subvar_flags &= ~opf_kill_def; add_stmt_operand (&sv->var, s_ann, subvar_flags);