Re: [PATCH v3 8/9] target/ppc: created tcg-stub.c file

2021-05-24 Thread Bruno Piazera Larsen
On 24/05/2021 00:02, David Gibson wrote: On Fri, May 21, 2021 at 05:17:58PM -0300, Bruno Larsen (billionai) wrote: Created a file with stubs needed to compile disabling TCG. *_ppc_opcodes were created to make cpu_init.c have a few less ifdefs, since they are not needed. coftmmu_resize_hpt_* hav

Re: [PATCH v3 8/9] target/ppc: created tcg-stub.c file

2021-05-23 Thread David Gibson
On Fri, May 21, 2021 at 05:17:58PM -0300, Bruno Larsen (billionai) wrote: > Created a file with stubs needed to compile disabling TCG. *_ppc_opcodes > were created to make cpu_init.c have a few less ifdefs, since they are > not needed. coftmmu_resize_hpt_* have to be created because the compiler >

[PATCH v3 8/9] target/ppc: created tcg-stub.c file

2021-05-21 Thread Bruno Larsen (billionai)
Created a file with stubs needed to compile disabling TCG. *_ppc_opcodes were created to make cpu_init.c have a few less ifdefs, since they are not needed. coftmmu_resize_hpt_* have to be created because the compiler can't automatically know they aren't used, but they should never be reached. Sign