Re: [PATCH] Simplify {gimplify_and_,}update_call_from_tree API

2021-04-26 Thread Richard Biener via Gcc-patches
On Wed, Apr 14, 2021 at 4:27 PM Richard Biener wrote: > > This removes update_call_from_tree in favor of > gimplify_and_update_call_from_tree, removing some code duplication > and simplifying the API use. Some users of update_call_from_tree > have been transitioned to replace_call_with_value and

[PATCH] Simplify {gimplify_and_,}update_call_from_tree API

2021-04-14 Thread Richard Biener
This removes update_call_from_tree in favor of gimplify_and_update_call_from_tree, removing some code duplication and simplifying the API use. Some users of update_call_from_tree have been transitioned to replace_call_with_value and the API and its dependences have been moved to gimple-fold.h. Th