This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH][7/6] Allow anonymous SSA names
On Thu, 9 Aug 2012, Diego Novillo wrote:
> On 12-08-09 09:20 , Richard Guenther wrote:
>
> > if (interm_type)
> > {
> > /* Create a type conversion HALF_TYPE->INTERM_TYPE. */
> > ! tmp = create_tmp_reg (interm_type, NULL);
> > ! new_oprnd = make_ssa_name (tmp, NULL);
> > new_stmt = gimple_build_assign_with_ops (NOP_EXPR, new_oprnd,
> > oprnd, NULL_TREE);
> > oprnd = new_oprnd;
> > --- 1119,1125 ----
> > if (interm_type)
> > {
> > /* Create a type conversion HALF_TYPE->INTERM_TYPE. */
> > ! new_oprnd = make_ssa_name (interm_type, NULL);
>
>
> Nice! Any chance that you could go over tree-ssa.texi to refresh the internal
> docs? (I don't recall what we have documented in there, tbh).
Yeah, it's on my list of things to do during stage3.
Richard.