This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [trunk][patch] more refactoring in tree-vrp.c
- From: "Diego Novillo" <dnovillo at google dot com>
- To: "Rafael Espindola" <espindola at google dot com>
- Cc: GCC <gcc-patches at gcc dot gnu dot org>
- Date: Mon, 31 Mar 2008 16:44:50 -0400
- Subject: Re: [trunk][patch] more refactoring in tree-vrp.c
- References: <38a0d8450803311210x7b5d7bf3g6f87ba3342fcee87@mail.gmail.com>
On Mon, Mar 31, 2008 at 15:10, Rafael Espindola <espindola@google.com> wrote:
> @@ -3623,6 +3623,65 @@ register_new_assert_for (tree name, tree expr,
> bitmap_set_bit (need_assert_for, SSA_NAME_VERSION (name));
> }
>
> +static bool
> +extract_code_and_val_from_cond_with_ops (tree name, enum tree_code cond_code,
> + tree cond_op0, tree cond_op1,
> + bool invert, enum tree_code *code_p,
> + tree *val_p)
Needs comment.
OK with that change.
Diego.