Re: [PATCH][ARM] Fix PR 56809

2013-05-01 Thread Richard Earnshaw
On 30/04/13 17:53, Kyrylo Tkachov wrote: -Original Message- From: Ramana Radhakrishnan Sent: 03 April 2013 16:16 To: Kyrylo Tkachov Cc: GCC Patches Subject: Re: [PATCH][ARM] Fix PR 56809 On 04/03/13 16:07, Kyrylo Tkachov wrote: Hi all, This patch fixes an ICE that we encounter when

RE: [PATCH][ARM] Fix PR 56809

2013-04-30 Thread Kyrylo Tkachov
> -Original Message- > From: Ramana Radhakrishnan > Sent: 03 April 2013 16:16 > To: Kyrylo Tkachov > Cc: GCC Patches > Subject: Re: [PATCH][ARM] Fix PR 56809 > > On 04/03/13 16:07, Kyrylo Tkachov wrote: > > Hi all, > > > > This patch fixes an ICE

Re: [PATCH][ARM] Fix PR 56809

2013-04-03 Thread Ramana Radhakrishnan
On 04/03/13 16:07, Kyrylo Tkachov wrote: Hi all, This patch fixes an ICE that we encounter when building gcc on arm targets. The jump table reorganisation exposed a bug in the backend. This fixes it by using next_active_insn instead of next_real_insn when looking for the diff vector in the jump

[PATCH][ARM] Fix PR 56809

2013-04-03 Thread Kyrylo Tkachov
Hi all, This patch fixes an ICE that we encounter when building gcc on arm targets. The jump table reorganisation exposed a bug in the backend. This fixes it by using next_active_insn instead of next_real_insn when looking for the diff vector in the jump table handling code. (Thanks to Steven Boss