This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[trivial PATCH] Fix some formatting issues in MIPS opcode bits


Checked in as obvious & trivial.

[ include/opcode/ChangeLog ]
2001-11-04  Chris Demetriou  <cgd@broadcom.com>

	* mips.h (OPCODE_IS_MEMBER): Remove extra space.

[ opcodes/ChangeLog ]
2001-11-04  Chris Demetriou  <cgd@broadcom.com>

	* mips-dis.c (print_insn_mips): Remove spaces at end of line.

Index: include/opcode/mips.h
===================================================================
RCS file: /cvs/src/src/include/opcode/mips.h,v
retrieving revision 1.22
diff -u -p -r1.22 mips.h
--- mips.h	2001/10/18 22:41:35	1.22
+++ mips.h	2001/11/05 03:04:21
@@ -381,7 +381,7 @@ struct mips_opcode
      || (cpu == CPU_R3900 && ((insn)->membership & INSN_3900) != 0)	\
      || ((cpu == CPU_R10000 || cpu == CPU_R12000)			\
 	 && ((insn)->membership & INSN_10000) != 0)			\
-     || (cpu == CPU_SB1  && ((insn)->membership & INSN_SB1) != 0)	\
+     || (cpu == CPU_SB1 && ((insn)->membership & INSN_SB1) != 0)	\
      || 0)	/* Please keep this term for easier source merging.  */
 
 /* This is a list of macro expanded instructions.
Index: opcodes/mips-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips-dis.c,v
retrieving revision 1.23
diff -u -p -r1.23 mips-dis.c
--- mips-dis.c	2001/10/23 19:20:27	1.23
+++ mips-dis.c	2001/11/05 03:04:22
@@ -457,7 +457,7 @@ print_insn_mips (memaddr, word, info)
   info->display_endian = info->endian;
   info->insn_info_valid = 1;
   info->branch_delay_insns = 0;
-  info->data_size = 0;      
+  info->data_size = 0;
   info->insn_type = dis_nonbranch;
   info->target = 0;
   info->target2 = 0;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]