On Fri, 10 Aug 2012, Jan Hubicka wrote:
> >
> > This converts most users of create_tmp_{var,reg} to use anonymous
> > SSA names. To give you one more reason to look at 6/6 ;)
> >
> > Bootstrapped on x86_64-unknown-linux-gnu, testing in progress.
>
> Very cool. Thanks for the hard work. Did yo
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 = ma
>
> This converts most users of create_tmp_{var,reg} to use anonymous
> SSA names. To give you one more reason to look at 6/6 ;)
>
> Bootstrapped on x86_64-unknown-linux-gnu, testing in progress.
Very cool. Thanks for the hard work. Did you have time to test the memory use
effets?
(I have to
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_as
On 08/09/2012 06:20 AM, Richard Guenther wrote:
> This converts most users of create_tmp_{var,reg} to use anonymous
> SSA names. To give you one more reason to look at 6/6 ;)
Wow, there's some really nice cleanups in there.
r~