Re: [PATCH] Adds wrapper for gimple_return_retval to accept gimple*

2020-05-16 Thread Richard Biener via Gcc-patches
On May 16, 2020 11:41:51 AM GMT+02:00, Erick Ochoa wrote: >Adds wrapper for gimple_return_retval to accept gimple* > >Most functions interact with GIMPLE IL using arguments of type gimple*. > >Functions interacting with GIMPLE_RETURN instructions still use >greturn* >types as arguments. This

[PATCH] Adds wrapper for gimple_return_retval to accept gimple*

2020-05-16 Thread Erick Ochoa
Adds wrapper for gimple_return_retval to accept gimple* Most functions interact with GIMPLE IL using arguments of type gimple*. Functions interacting with GIMPLE_RETURN instructions still use greturn* types as arguments. This patch adds wrappers around functions taking greturn* as inputs. The