Andreas Krebbel wrote:

> 2012-01-19  Andreas Krebbel  <andreas.kreb...@de.ibm.com>
> 
>       PR rtl-optimization/51856
>       * reload.c (find_reloads_subreg_address): Set the address_reloaded
>       flag to reloaded.


>     if (reloaded && address_reloaded)
> !     *address_reloaded = 1;
>   
>     return x;
>   }
> --- 6232,6238 ----
>       }
>       }
>     if (reloaded && address_reloaded)
> !     *address_reloaded = reloaded;

I think this would be even better if written as

    if (address_reloaded)
      *address_reloaded = reloaded;

Otherwise OK.

Thanks,
Ulrich

-- 
  Dr. Ulrich Weigand
  GNU Toolchain for Linux on System z and Cell BE
  ulrich.weig...@de.ibm.com

Reply via email to