Re: [PR43721] Failure to optimise (a/b) and (a%b) into single call

2013-09-03 Thread David Malcolm
On Tue, 2013-09-03 at 12:57 +0200, Richard Biener wrote: > On Fri, Jun 21, 2013 at 4:12 AM, Kugan > wrote: > > On 17/06/13 19:07, Richard Biener wrote: > >> > >> On Mon, 17 Jun 2013, Kugan wrote: > >> > >>> Hi, > >>> > >>> I am attempting to fix Bug 43721 - Failure to optimise (a/b) and (a%b) > >>

Re: [PR43721] Failure to optimise (a/b) and (a%b) into single call

2013-09-03 Thread Richard Biener
On Fri, Jun 21, 2013 at 4:12 AM, Kugan wrote: > On 17/06/13 19:07, Richard Biener wrote: >> >> On Mon, 17 Jun 2013, Kugan wrote: >> >>> Hi, >>> >>> I am attempting to fix Bug 43721 - Failure to optimise (a/b) and (a%b) >>> into >>> single __aeabi_idivmod call >>> (http://gcc.gnu.org/bugzilla/show_

Re: [PR43721] Failure to optimise (a/b) and (a%b) into single call

2013-06-20 Thread Kugan
On 17/06/13 19:07, Richard Biener wrote: On Mon, 17 Jun 2013, Kugan wrote: Hi, I am attempting to fix Bug 43721 - Failure to optimise (a/b) and (a%b) into single __aeabi_idivmod call (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43721) execute_cse_sincos tree level pass does similar cse so I a

Re: [PR43721] Failure to optimise (a/b) and (a%b) into single call

2013-06-17 Thread Richard Biener
On Mon, 17 Jun 2013, Kugan wrote: > Hi, > > I am attempting to fix Bug 43721 - Failure to optimise (a/b) and (a%b) into > single __aeabi_idivmod call > (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43721) > > execute_cse_sincos tree level pass does similar cse so I attempted to use > similar appr

[PR43721] Failure to optimise (a/b) and (a%b) into single call

2013-06-16 Thread Kugan
Hi, I am attempting to fix Bug 43721 - Failure to optimise (a/b) and (a%b) into single __aeabi_idivmod call (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43721) execute_cse_sincos tree level pass does similar cse so I attempted to use similar approach here. Div/mod cse is not really using bui