diff options
author | Michael Tiemann <tiemann@cygnus> | 1991-12-15 20:46:21 +0000 |
---|---|---|
committer | Michael Tiemann <tiemann@cygnus> | 1991-12-15 20:46:21 +0000 |
commit | 76d89cb115300b1e3ac9afb93168e9019879ff03 (patch) | |
tree | 3bb1a4da8137bb42db65467fcd2a1721c5a2a5aa /binutils | |
parent | 76b2c3c8cbd2ddad5d5af68b4bfe9fa0b40cef04 (diff) | |
download | fsf-binutils-gdb-76d89cb115300b1e3ac9afb93168e9019879ff03.zip fsf-binutils-gdb-76d89cb115300b1e3ac9afb93168e9019879ff03.tar.gz fsf-binutils-gdb-76d89cb115300b1e3ac9afb93168e9019879ff03.tar.bz2 |
Format inner print loop according to emacs. Code changes will follow
(but be easier to diff).
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/sparc-pinsn.c | 68 |
1 files changed, 35 insertions, 33 deletions
diff --git a/binutils/sparc-pinsn.c b/binutils/sparc-pinsn.c index 839dbc0..003d4b6 100644 --- a/binutils/sparc-pinsn.c +++ b/binutils/sparc-pinsn.c @@ -180,32 +180,34 @@ memcpy(&insn,buffer, sizeof (insn)); if (opcode->args[0] != ',') fputs (" ", stream); - for (s = opcode->args; *s != '\0'; ++s) { - while (*s == ',') { - fputs (",", stream); - ++s; - - switch (*s) { - case 'a': - fputs ("a", stream); - ++s; - continue; + for (s = opcode->args; *s != '\0'; ++s) + { + while (*s == ',') + { + fputs (",", stream); + ++s; + + switch (*s) { + case 'a': + fputs ("a", stream); + ++s; + continue; #ifndef NO_V9 - case 'N': - fputs("pn", stream); - ++s; - continue; - - case 'T': - fputs("pt", stream); - ++s; - continue; -#endif /* NO_V9 */ - - default: - break; - } /* switch on arg */ - } /* while there are comma started args */ + case 'N': + fputs("pn", stream); + ++s; + continue; + + case 'T': + fputs("pt", stream); + ++s; + continue; +#endif /* NO_V9 */ + + default: + break; + } /* switch on arg */ + } /* while there are comma started args */ fputs (" ", stream); @@ -268,7 +270,7 @@ memcpy(&insn,buffer, sizeof (insn)); case 'h': fprintf (stream, "%%hi(%#x)", - (unsigned int) insn.imm22 << 10); + (unsigned int) insn.imm22 << 10); break; case 'i': @@ -279,7 +281,7 @@ memcpy(&insn,buffer, sizeof (insn)); /* Check to see whether we have a 1+i, and take note of that fact. - + Note: because of the way we sort the table, we will be matching 1+i rather than i+1, so it is OK to assume that i is after +, @@ -309,21 +311,21 @@ memcpy(&insn,buffer, sizeof (insn)); stream); break; - case 'Y': + case 'Y': fputs ("%amr", stream); break; -#endif /* NO_V9 */ +#endif /* NO_V9 */ - case 'M': + case 'M': fprintf(stream, "%%asr%d", insn.rs1); break; - case 'm': + case 'm': fprintf(stream, "%%asr%d", insn.rd); break; - case 'L': + case 'L': print_address ((bfd_vma) memaddr + insn.disp30 * 4, stream); break; @@ -333,7 +335,7 @@ memcpy(&insn,buffer, sizeof (insn)); /* Special case for `unimp'. Don't try to turn it's operand into a function offset. */ fprintf (stream, "%#x", - (unsigned) (((int) insn.disp22 << 10) >> 10)); + (unsigned) (((int) insn.disp22 << 10) >> 10)); else /* We cannot trust the compiler to sign-extend when extracting the bitfield, hence the shifts. */ |