Re: [PATCH] Fix ICE for SIMD clones usage in LTO

2015-10-21 Thread Ilya Enkovich
Ping 2015-10-05 19:13 GMT+03:00 Ilya Enkovich : > Hi, > > When SIMD clone is created original function may be defined in another > partition. In this case SIMD clone also has to have in_other_partition flag. > Now it doesn't and we get an ICE. This patch fixes it.

Re: [PATCH] Fix ICE for SIMD clones usage in LTO

2015-10-21 Thread Jakub Jelinek
On Wed, Oct 21, 2015 at 03:57:14PM +0300, Ilya Enkovich wrote: > Ping This is ok for trunk. > > 2015-10-05 Ilya Enkovich > > > > * omp-low.c (simd_clone_create): Set in_other_partition > > for created clones. > > > > gcc/testsuite/ > > > > 2015-10-05

[PATCH] Fix ICE for SIMD clones usage in LTO

2015-10-05 Thread Ilya Enkovich
Hi, When SIMD clone is created original function may be defined in another partition. In this case SIMD clone also has to have in_other_partition flag. Now it doesn't and we get an ICE. This patch fixes it. Bootstrapped and regtested for x86_64-unknown-linux-gnu. OK for trunk? Thanks,