Re: [PATCH] Fix hard regno checks

2018-08-02 Thread Jeff Law
On 07/27/2018 09:36 AM, Vladimir Makarov wrote: > On 07/23/2018 05:14 AM, Ilya Leoshkevich wrote: >> FIRST_PSEUDO_REGISTER is not a hard regno, so comparisons should use >> "<" instead of "<=", and ">=" instread of ">". >> > Thank you for finding these typos.  LRA parts of the patch are ok for me.

Re: [PATCH] Fix hard regno checks

2018-07-27 Thread Vladimir Makarov
On 07/23/2018 05:14 AM, Ilya Leoshkevich wrote: FIRST_PSEUDO_REGISTER is not a hard regno, so comparisons should use "<" instead of "<=", and ">=" instread of ">". Thank you for finding these typos.  LRA parts of the patch are ok for me.

[PATCH] Fix hard regno checks

2018-07-23 Thread Ilya Leoshkevich
FIRST_PSEUDO_REGISTER is not a hard regno, so comparisons should use "<" instead of "<=", and ">=" instread of ">". 2018-07-19 Ilya Leoshkevich * config/nds32/nds32.c (nds32_hard_regno_mode_ok): Replace > with >=. * df-problems.c (df_remove_dead_eq_notes):