diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-08-12 04:45:07 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-08-12 04:45:07 -0700 |
commit | 43e65147c07b1400ae0dbb6694882eceb2363713 (patch) | |
tree | e52d56a58d00c74db6c82e736464ab0f500a7181 /opcodes/m88k-dis.c | |
parent | f3445b37b67deb8f67f7885274b2544684503f78 (diff) | |
download | gdb-43e65147c07b1400ae0dbb6694882eceb2363713.zip gdb-43e65147c07b1400ae0dbb6694882eceb2363713.tar.gz gdb-43e65147c07b1400ae0dbb6694882eceb2363713.tar.bz2 |
Remove trailing spaces in opcodes
Diffstat (limited to 'opcodes/m88k-dis.c')
-rw-r--r-- | opcodes/m88k-dis.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/opcodes/m88k-dis.c b/opcodes/m88k-dis.c index 04bbc12..2e9323f 100644 --- a/opcodes/m88k-dis.c +++ b/opcodes/m88k-dis.c @@ -522,7 +522,7 @@ HASHTAB *hashtable[HASHVAL] = {0}; /* Initialize the disassembler instruction table. - + Initialize the hash table and instruction table for the disassembler. This should be called once before the first call to disasm(). */ @@ -549,14 +549,14 @@ init_disasm (void) hashtable[hashvalue] = &hashentries[i]; } } - + /* Decode an Operand of an instruction. - + This function formats and writes an operand of an instruction to info based on the operand specification. When the `first' flag is set this is the first operand of an instruction. Undefined operand types cause a <dis error> message. - + Parameters: disassemble_info where the operand may be printed OPSPEC *opptr pointer to an operand specification @@ -564,7 +564,7 @@ init_disasm (void) UINT pc pc of instruction; used for pc-relative disp. int first flag which if nonzero indicates the first operand of an instruction - + The operand specified is extracted from the instruction and is written to buf in the format specified. The operand is preceded by a comma if it is not the first operand of an instruction and it is @@ -654,7 +654,7 @@ printop (struct disassemble_info *info, else (*info->fprintf_func) (info->stream, "%x", extracted_field); break; - + case PCREL: (*info->print_address_func) (pc + (4 * (SEXT (inst, opptr->offset, opptr->width))), @@ -683,7 +683,7 @@ printop (struct disassemble_info *info, `pc' should be the address of this instruction, it will be used to print the target address if this is a relative jump or call the disassembled instruction is written to `info'. - + The function returns the length of this instruction in bytes. */ static int |