Re: [PATCH RISU v2 02/13] Build elf test cases instead of raw binaries

2024-05-30 Thread Peter Maydell
On Sun, 26 May 2024 at 20:38, Richard Henderson wrote: > > For test_arch64.s and test_arm.s, use '.inst' so that the risu > control insns are marked as instructions for disassembly. > > For test_i386.S, split the data to be loaded into the data section; > fix an error aligning the data: 16 not 2**

Re: [PATCH RISU v2 02/13] Build elf test cases instead of raw binaries

2024-05-30 Thread Peter Maydell
On Sun, 26 May 2024 at 20:38, Richard Henderson wrote: > > For test_arch64.s and test_arm.s, use '.inst' so that the risu > control insns are marked as instructions for disassembly. > > For test_i386.S, split the data to be loaded into the data section; > fix an error aligning the data: 16 not 2**

[PATCH RISU v2 02/13] Build elf test cases instead of raw binaries

2024-05-26 Thread Richard Henderson
For test_arch64.s and test_arm.s, use '.inst' so that the risu control insns are marked as instructions for disassembly. For test_i386.S, split the data to be loaded into the data section; fix an error aligning the data: 16 not 2**16. Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard He