Re: Fix verifier ICE on CLOBBER of COMPONENT_REF

2019-07-02 Thread Jan Hubicka
> On Mon, 1 Jul 2019, Jan Hubicka wrote: > > > Hi, > > the testcase makes inliner to substitute RESULT_DECL by COMPONENT_REF > > inside CLOBBER statement. This is not allowed and leads to ICE in > > verifier (while I think we should fix code to support this). > > This patch simply makes inliner to

Re: Fix verifier ICE on CLOBBER of COMPONENT_REF

2019-07-02 Thread Richard Biener
On Mon, 1 Jul 2019, Jan Hubicka wrote: > Hi, > the testcase makes inliner to substitute RESULT_DECL by COMPONENT_REF > inside CLOBBER statement. This is not allowed and leads to ICE in > verifier (while I think we should fix code to support this). > This patch simply makes inliner to watch for thi

Fix verifier ICE on CLOBBER of COMPONENT_REF

2019-07-01 Thread Jan Hubicka
Hi, the testcase makes inliner to substitute RESULT_DECL by COMPONENT_REF inside CLOBBER statement. This is not allowed and leads to ICE in verifier (while I think we should fix code to support this). This patch simply makes inliner to watch for this case and do not remap the statement at all. The