Re: [PATCH] Another debug info stv fix (PR rtl-optimization/78547)

2016-12-01 Thread Uros Bizjak
On Thu, Dec 1, 2016 at 11:58 PM, Jeff Law wrote: > On 11/30/2016 11:59 AM, Jakub Jelinek wrote: >> >> On Wed, Nov 30, 2016 at 08:01:11AM +0100, Uros Bizjak wrote: >>> >>> On Tue, Nov 29, 2016 at 8:44 PM, Jakub Jelinek wrote: Hi! The following testcase ICEs because DECL_RTL/DEC

Re: [PATCH] Another debug info stv fix (PR rtl-optimization/78547)

2016-12-01 Thread Jeff Law
On 11/30/2016 11:59 AM, Jakub Jelinek wrote: On Wed, Nov 30, 2016 at 08:01:11AM +0100, Uros Bizjak wrote: On Tue, Nov 29, 2016 at 8:44 PM, Jakub Jelinek wrote: Hi! The following testcase ICEs because DECL_RTL/DECL_INCOMING_RTL are adjusted by the stv pass through the PUT_MODE modifications, w

Re: [PATCH] Another debug info stv fix (PR rtl-optimization/78547)

2016-11-30 Thread Jakub Jelinek
On Wed, Nov 30, 2016 at 08:01:11AM +0100, Uros Bizjak wrote: > On Tue, Nov 29, 2016 at 8:44 PM, Jakub Jelinek wrote: > > Hi! > > > > The following testcase ICEs because DECL_RTL/DECL_INCOMING_RTL are adjusted > > by the stv pass through the PUT_MODE modifications, which means that for > > var-trac

Re: [PATCH] Another debug info stv fix (PR rtl-optimization/78547)

2016-11-29 Thread Uros Bizjak
On Tue, Nov 29, 2016 at 8:44 PM, Jakub Jelinek wrote: > Hi! > > The following testcase ICEs because DECL_RTL/DECL_INCOMING_RTL are adjusted > by the stv pass through the PUT_MODE modifications, which means that for > var-tracking.c they contain a bogus mode. > > Fixed by wrapping those into TImode

[PATCH] Another debug info stv fix (PR rtl-optimization/78547)

2016-11-29 Thread Jakub Jelinek
Hi! The following testcase ICEs because DECL_RTL/DECL_INCOMING_RTL are adjusted by the stv pass through the PUT_MODE modifications, which means that for var-tracking.c they contain a bogus mode. Fixed by wrapping those into TImode subreg or adjusting the MEMs to have the correct mode. Bootstrapp