Re: [PATCH] Externalize definition of create_tmp_reg_or_ssa_name

2017-05-12 Thread Richard Biener
On Thu, May 11, 2017 at 5:52 PM, Will Schmidt wrote: > Hi, > > I had initially posted this back in Dec, at which time it > was given an OK. Since a bunch of time has passed, I'm reposting > to refresh memories, and ensure it's still OK. :-) > > I will be needing access to the create_tmp_reg_or_s

[PATCH] Externalize definition of create_tmp_reg_or_ssa_name

2017-05-11 Thread Will Schmidt
Hi, I had initially posted this back in Dec, at which time it was given an OK. Since a bunch of time has passed, I'm reposting to refresh memories, and ensure it's still OK. :-) I will be needing access to the create_tmp_reg_or_ssa_name() function for some subsequent early expansion of

Re: [PATCH] Externalize definition of create_tmp_reg_or_ssa_name

2016-12-20 Thread Jakub Jelinek
On Tue, Dec 20, 2016 at 11:45:18AM +0100, Richard Biener wrote: > > I've bootstrapped and make check with this patch applied in conjunction with > > other patches. > > > > OK for trunk? > > Ok. > > Richard. > > > > > [gcc] > > > > 2016-12-19 Will Schmidt > > > > * gimple-fold.c (crea

Re: [PATCH] Externalize definition of create_tmp_reg_or_ssa_name

2016-12-20 Thread Richard Biener
On Mon, Dec 19, 2016 at 6:27 PM, Will Schmidt wrote: > Hi, > > For some future rs6000 vector folding patches, I will be needing > access to the create_tmp_reg_or_ssa_name() function in rs6000.c. > Thus... > Externalize the definition of create_tmp_reg_or_ssa_name > for use in rs6000.c. The actual

[PATCH] Externalize definition of create_tmp_reg_or_ssa_name

2016-12-19 Thread Will Schmidt
Hi, For some future rs6000 vector folding patches, I will be needing access to the create_tmp_reg_or_ssa_name() function in rs6000.c. Thus... Externalize the definition of create_tmp_reg_or_ssa_name for use in rs6000.c. The actual usage will show up in later patches. I'll note that I do not have