Re: FW: [PATCH] Avoid a few find_base_term calls in alias.c

2013-04-09 Thread Richard Biener
On Tue, Apr 9, 2013 at 9:42 AM, Igor Zamyatin wrote: > Richard, > > Any plans to commit your new fix? I did already. Richard. > > Thanks, > Igor > >> On Thu, Apr 4, 2013 at 3:33 PM, Yuri Rumyantsev >> wrote: >> > Hi Richard, >> > >> > You slightly change behavior of find_base_term, namely befo

Re: FW: [PATCH] Avoid a few find_base_term calls in alias.c

2013-04-04 Thread Richard Biener
On Thu, Apr 4, 2013 at 3:33 PM, Yuri Rumyantsev wrote: > Hi Richard, > > You slightly change behavior of find_base_term, namely before your fix we > have the following code: > > if (REG_P (tmp1) && REG_POINTER (tmp1)) > { >rtx base = find_base_term (tmp1); >if (base) > return base; >

Re: FW: [PATCH] Avoid a few find_base_term calls in alias.c

2013-04-04 Thread Yuri Rumyantsev
Hi Richard, You slightly change behavior of find_base_term, namely before your fix we have the following code: if (REG_P (tmp1) && REG_POINTER (tmp1)) { rtx base = find_base_term (tmp1); if (base) return base; } but in your fix you added the following checks on base: tmp1 = find_ba