mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Format inner print loop according to emacs. Code changes will follow
(but be easier to diff).
This commit is contained in:
@ -180,8 +180,10 @@ memcpy(&insn,buffer, sizeof (insn));
|
||||
|
||||
if (opcode->args[0] != ',')
|
||||
fputs (" ", stream);
|
||||
for (s = opcode->args; *s != '\0'; ++s) {
|
||||
while (*s == ',') {
|
||||
for (s = opcode->args; *s != '\0'; ++s)
|
||||
{
|
||||
while (*s == ',')
|
||||
{
|
||||
fputs (",", stream);
|
||||
++s;
|
||||
|
||||
|
Reference in New Issue
Block a user