i386-dis.c: Remove trailing spaces
Removes trailing spaces from disassembled i386 instructions in `i386-dis.c`.
This commit removes trailing spaces in the output of the i386 disassembler. This cosmetic change improves the readability of disassembled code by ensuring cleaner formatting.
In Details
This commit modifies opcodes/i386-dis.c to remove trailing spaces in the output of the print_insn function. The change is purely cosmetic and affects the formatting of disassembled i386 instructions, with no impact on the disassembly process itself or other binutils components.
For Context
When you disassemble machine code (convert it back into human-readable assembly instructions), the output can sometimes have extra spaces. This commit cleans up the output of the disassembler for Intel x86 code by removing those unnecessary spaces. This makes the disassembled code easier to read.