More Q's regarding gimplification
Nathanael Nerode
neroden@fastmail.fm
Mon Aug 16 11:48:00 GMT 2004
gimple_predicate
rhs_predicate_for (tree lhs)
{
if (is_gimple_tmp_var (lhs))
return is_gimple_tmp_rhs;
else if (is_gimple_reg (lhs))
return is_gimple_reg_rhs;
else
return is_gimple_mem_rhs;
}
The question is this:
Is it supposed to be possible to have
is_gimple_tmp_var(lhs) && !is_gimple_reg(lhs)
or is
is_gimple_tmp_var
supposed to imply
is_gimple_reg?
If the latter, then my job here is simpler...
--
This space intentionally left blank.
More information about the Gcc
mailing list