Re: Help implementing support for vec in gengtype

2020-04-21 Thread Richard Biener via Gcc
On Tue, Apr 21, 2020 at 5:56 PM Giuliano Belinassi wrote: > > Hi, Richi > > On 04/21, Richard Biener wrote: > > On Mon, Apr 20, 2020 at 11:45 PM Giuliano Belinassi > > wrote: > > > > > > Hi. Sorry for the late reply. > > > > > > On 03/02, Richard Biener wrote: > > > > On Thu, Feb 27, 2020 at 6:56

Re: Help implementing support for vec in gengtype

2020-04-21 Thread Giuliano Belinassi via Gcc
Hi, Richi On 04/21, Richard Biener wrote: > On Mon, Apr 20, 2020 at 11:45 PM Giuliano Belinassi > wrote: > > > > Hi. Sorry for the late reply. > > > > On 03/02, Richard Biener wrote: > > > On Thu, Feb 27, 2020 at 6:56 PM Giuliano Belinassi > > > wrote: > > > > > > > > Hi, all. > > > > > > > > I

Re: Help implementing support for vec in gengtype

2020-04-21 Thread Richard Biener via Gcc
On Mon, Apr 20, 2020 at 11:45 PM Giuliano Belinassi wrote: > > Hi. Sorry for the late reply. > > On 03/02, Richard Biener wrote: > > On Thu, Feb 27, 2020 at 6:56 PM Giuliano Belinassi > > wrote: > > > > > > Hi, all. > > > > > > I am tying to fix an issue with a global variable in the parallel gcc

Re: Help implementing support for vec in gengtype

2020-04-20 Thread Giuliano Belinassi via Gcc
Hi. Sorry for the late reply. On 03/02, Richard Biener wrote: > On Thu, Feb 27, 2020 at 6:56 PM Giuliano Belinassi > wrote: > > > > Hi, all. > > > > I am tying to fix an issue with a global variable in the parallel gcc > > project. For this, I am trying to move some global variables from > > tree

Re: Help implementing support for vec in gengtype

2020-03-02 Thread Richard Biener
On Thu, Feb 27, 2020 at 6:56 PM Giuliano Belinassi wrote: > > Hi, all. > > I am tying to fix an issue with a global variable in the parallel gcc > project. For this, I am trying to move some global variables from > tree-ssa-operands to struct function. One of this variable is a > vec type, and gen

Re: Help implementing support for vec in gengtype

2020-02-27 Thread Nicholas Krause
On 2/27/20 12:56 PM, Giuliano Belinassi wrote: Hi, all. I am tying to fix an issue with a global variable in the parallel gcc project. For this, I am trying to move some global variables from tree-ssa-operands to struct function. One of this variable is a vec type, and gengtype doesn't look s

Help implementing support for vec in gengtype

2020-02-27 Thread Giuliano Belinassi
Hi, all. I am tying to fix an issue with a global variable in the parallel gcc project. For this, I am trying to move some global variables from tree-ssa-operands to struct function. One of this variable is a vec type, and gengtype doesn't look so happy with it. In this context, I am trying to ad