Re: Creating new variable in tree level

2007-06-12 Thread Richard Guenther
On 6/12/07, Revital1 Eres <[EMAIL PROTECTED]> wrote: Hello, I appreciate your help in figuring what is considered a valid sequence of operations for creating a new variable in the tree level. Is the following sequence OK - tmp_var = create_tmp_var (type, "_new_"); add_referenced_tmp_var (tm

Creating new variable in tree level

2007-06-12 Thread Revital1 Eres
Hello, I appreciate your help in figuring what is considered a valid sequence of operations for creating a new variable in the tree level. Is the following sequence OK - tmp_var = create_tmp_var (type, "_new_"); add_referenced_tmp_var (tmp_var); mark_sym_for_renaming (tmp_var); Or should I