[PATCH 1/2] split-path: CALL_EXPR can't show up in gimple_assign

2025-01-29 Thread Andrew Pinski
While working on split path, I noticed that poor_ifcvt_candidate_code would check for CALL_EXPR but that can't show up in gimple_assign so this removes that check. This could be a very very small compile time improvement. Bootstrapped and tested on x86_64-linux-gnu. gcc/ChangeLog: * gim

Re: [PATCH 1/2] split-path: CALL_EXPR can't show up in gimple_assign

2025-01-29 Thread Richard Biener
On Wed, Jan 29, 2025 at 8:56 AM Andrew Pinski wrote: > > While working on split path, I noticed that poor_ifcvt_candidate_code > would check for CALL_EXPR but that can't show up in gimple_assign > so this removes that check. > > This could be a very very small compile time improvement. OK > Boot