Re: [PATCH][ARM] Fix checking RTL error in cortex_a9_sched_adjust_cost

2015-11-06 Thread Kyrill Tkachov
On 06/11/15 11:37, Kyrill Tkachov wrote: Ping. https://gcc.gnu.org/ml/gcc-patches/2015-10/msg03170.html My apologies, I meant to ping another patch. Please disregard that. Kyrill Thanks, Kyrill On 30/10/15 15:47, Kyrill Tkachov wrote: On 30/10/15 14:37, Ramana Radhakrishnan wrote: On 2

Re: [PATCH][ARM] Fix checking RTL error in cortex_a9_sched_adjust_cost

2015-11-06 Thread Kyrill Tkachov
Ping. https://gcc.gnu.org/ml/gcc-patches/2015-10/msg03170.html Thanks, Kyrill On 30/10/15 15:47, Kyrill Tkachov wrote: On 30/10/15 14:37, Ramana Radhakrishnan wrote: On 29/10/15 16:02, Kyrill Tkachov wrote: Hi all, An arm-none-eabi build with RTL checking and --with-cpu=cortex-a9 fails beca

Re: [PATCH][ARM] Fix checking RTL error in cortex_a9_sched_adjust_cost

2015-10-30 Thread Kyrill Tkachov
On 30/10/15 14:37, Ramana Radhakrishnan wrote: On 29/10/15 16:02, Kyrill Tkachov wrote: Hi all, An arm-none-eabi build with RTL checking and --with-cpu=cortex-a9 fails because cortex_a9_sched_adjust_cost tries to access the SET_DEST of a PARALLEL. The correct thing to do is to call single_set

Re: [PATCH][ARM] Fix checking RTL error in cortex_a9_sched_adjust_cost

2015-10-30 Thread Ramana Radhakrishnan
On 29/10/15 16:02, Kyrill Tkachov wrote: > Hi all, > > An arm-none-eabi build with RTL checking and --with-cpu=cortex-a9 fails > because > cortex_a9_sched_adjust_cost tries to access the SET_DEST of a PARALLEL. > The correct thing to do is to call single_set on dep, which will return a > simpl

[PATCH][ARM] Fix checking RTL error in cortex_a9_sched_adjust_cost

2015-10-29 Thread Kyrill Tkachov
Hi all, An arm-none-eabi build with RTL checking and --with-cpu=cortex-a9 fails because cortex_a9_sched_adjust_cost tries to access the SET_DEST of a PARALLEL. The correct thing to do is to call single_set on dep, which will return a simple SET that we can take the SET_DEST of or NULL if there's