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]
Other format: [Raw text]

maxq warning fix


This is a bit of a guess on my part, but what was in the line 682 hunk
below is obviously wrong.

	* maxq-dis.c: Formatting.
	(print_insn): Warning fix.

Index: opcodes/maxq-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/maxq-dis.c,v
retrieving revision 1.1
diff -u -p -r1.1 maxq-dis.c
--- opcodes/maxq-dis.c	8 Nov 2004 13:17:37 -0000	1.1
+++ opcodes/maxq-dis.c	19 Nov 2004 11:04:30 -0000
@@ -358,8 +358,8 @@ get_group (const unsigned int insn)
 
   if ((insn & _DECODE_LOWNIB_HIGHBYTE) == 0x0A00)
     {
-      /* && condition with sec part added on 26 May for resoveing 2 & 3 grp
-         conflict.  */
+      /* && condition with sec part added on 26 May for resolving 2 & 3 grp
+	 conflict.  */
       if (((insn & _DECODE_LOWNIB_LOWBYTE) == 0x000A)
 	  && ((insn & _DECODE_GET_F_HIGHBYTE) == 0x8000))
 	{
@@ -652,7 +652,8 @@ print_insn (bfd_vma memaddr, struct disa
 				      grp.bit_no);
 		}
 	      else
-		info->fprintf_func (info->stream, " %s", get_reg_name (grp.dst, (type1) 0));
+		info->fprintf_func (info->stream, " %s",
+				    get_reg_name (grp.dst, (type1) 0));
 	    }
 
 	  /* SRC is ABSENT in the grp.  */
@@ -682,7 +683,7 @@ print_insn (bfd_vma memaddr, struct disa
 					grp.bit_no);
 		  if (format == 0)
 		    info->fprintf_func (info->stream, " #%02xh.%d",
-					(grp.src, SRC), grp.bit_no);
+					grp.src, grp.bit_no);
 		}
 	      else
 		{
@@ -692,11 +693,11 @@ print_insn (bfd_vma memaddr, struct disa
 		    format = grp.fbit;
 		  if (format == 1)
 		    info->fprintf_func (info->stream, " %s",
-					   get_reg_name (grp.src,
-							 (type1) 1 /*SRC*/));
+					get_reg_name (grp.src,
+						      (type1) 1 /*SRC*/));
 		  if (format == 0)
 		    info->fprintf_func (info->stream, " #%02xh",
-					   (grp.src));
+					(grp.src));
 		}
 	    }
 
@@ -705,7 +706,7 @@ print_insn (bfd_vma memaddr, struct disa
     }
 
   info->fprintf_func (info->stream, "Unable to Decode :  %02x %02x",
-			 insn[0], insn[1]);
+		      insn[0], insn[1]);
   return 2;			
 }
 
@@ -714,4 +715,3 @@ print_insn_maxq_little (bfd_vma memaddr,
 {
   return print_insn (memaddr, info, BFD_ENDIAN_LITTLE);
 }
-

-- 
Alan Modra
IBM OzLabs - Linux Technology Centre


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