Re: [PATCH] combine: Count auto_inc properly (PR89794)

2019-04-15 Thread Segher Boessenkool
}; also tested manually on the Arm > testcase. I added a missing "static", and added the testcase, as attached. Committing it now. Subject: [PATCH] combine: Count auto_inc properly (PR89794) The code that checks if an auto-increment from i0 or i1 is not lost is a bit shaky. The co

[PATCH] combine: Count auto_inc properly (PR89794)

2019-04-14 Thread Segher Boessenkool
The code that checks if an auto-increment from i0 or i1 is not lost is a bit shaky. The code to check the same for i2 is non-existent, and cannot be implemented in a similar way at all. So, this patch counts all auto-increments, and makes sure we end up with the same number as we started with. T