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

2020-03-23 Thread Jordan Niethe
On Mon, Mar 23, 2020 at 5:30 PM Nicholas Piggin wrote: > > Jordan Niethe's on March 20, 2020 3:17 pm: > > In preparation for instructions having a more complex data type start > > using a macro, PPC_INST(), for making an instruction out of a u32. > > Currently this does nothing, but it will allow

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

2020-03-23 Thread Nicholas Piggin
Jordan Niethe's on March 20, 2020 3:17 pm: > In preparation for instructions having a more complex data type start > using a macro, PPC_INST(), for making an instruction out of a u32. > Currently this does nothing, but it will allow for creating a data type > that can represent prefixed

[PATCH v4 04/16] powerpc: Use a macro for creating instructions from u32s

2020-03-19 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. Currently this does nothing, but it will allow for creating a data type that can represent prefixed instructions. Signed-off-by: Jordan Niethe --- v4: New to