Re: [PATCH] fix gimplification of call parameters (PR cilkplus/69267)

2016-01-27 Thread Jeff Law
On 01/15/2016 03:41 PM, Ryan Burn wrote: 2016-01-15 Ryan Burn PR cilkplus/69267 * cilk.c (cilk_gimplify_call_params_in_spawned_fn): Change to use gimplify_arg. Removed superfluous post_p argument. * c-family.h (cilk_gimplify_call_params_in_spawned_fn): Remove

Re: [PATCH] fix gimplification of call parameters (PR cilkplus/69267)

2016-01-25 Thread Ryan Burn
ping On Tue, Jan 19, 2016 at 9:28 AM, Ryan Burn wrote: > Does this look ok? > >> On Jan 15, 2016, at 5:41 PM, Ryan Burn wrote: >> >> This patch changes the function cilk_gimplify_call_params_in_spawned_fn to >> use gimplify_arg instead of gimplify_expr. It fixes an ICE when calling a >> functi

Re: [PATCH] fix gimplification of call parameters (PR cilkplus/69267)

2016-01-19 Thread Ryan Burn
Does this look ok? > On Jan 15, 2016, at 5:41 PM, Ryan Burn wrote: > > This patch changes the function cilk_gimplify_call_params_in_spawned_fn to > use gimplify_arg instead of gimplify_expr. It fixes an ICE when calling a > function with a constructed empty class as the argument. > > Bootstra

[PATCH] fix gimplification of call parameters (PR cilkplus/69267)

2016-01-15 Thread Ryan Burn
This patch changes the function cilk_gimplify_call_params_in_spawned_fn to use gimplify_arg instead of gimplify_expr. It fixes an ICE when calling a function with a constructed empty class as the argument. Bootstrapped and regression tested on x86_64-linux. 2016-01-15 Ryan Burn PR c