Re: [PATCH v5 04/21] powerpc: Use a macro for creating instructions from u32s

2020-04-07 Thread Jordan Niethe
On Tue, Apr 7, 2020 at 4:40 PM Balamuruhan S wrote: > > On Mon, 2020-04-06 at 18:09 +1000, Jordan Niethe wrote: > > In preparation for instructions having a more complex data type start > > using a macro, ppc_inst(), for making an instruction out of a u32. A > > macro is used so that instructions

Re: [PATCH v5 04/21] powerpc: Use a macro for creating instructions from u32s

2020-04-06 Thread Balamuruhan S
On Mon, 2020-04-06 at 18:09 +1000, Jordan Niethe wrote: > In preparation for instructions having a more complex data type start > using a macro, ppc_inst(), for making an instruction out of a u32. A > macro is used so that instructions can be used as initializer elements. > Currently this does not

[PATCH v5 04/21] powerpc: Use a macro for creating instructions from u32s

2020-04-06 Thread Jordan Niethe
In preparation for instructions having a more complex data type start using a macro, ppc_inst(), for making an instruction out of a u32. A macro is used so that instructions can be used as initializer elements. Currently this does nothing, but it will allow for creating a data type that can repres