[obvious mips sim patch] fix spacing in mips-dis.c: mips_isa_type()

cgd@broadcom.com cgd@broadcom.com
Thu Mar 14 22:01:00 GMT 2002


makes the mipsisa32 and mipsisa64 cases consistent with the rest.

applied.


cgd
===================================================================
2002-03-14  Chris G. Demetriou  <cgd@broadcom.com>

	* mips-dis.c (mips_isa_type): Fix formatting of bfd_mach_mipsisa32
	and bfd_mach_mipsisa64 cases to match the rest.

Index: mips-dis.c
===================================================================
RCS file: /cvs/src/src/opcodes/mips-dis.c,v
retrieving revision 1.24
diff -U10 -r1.24 mips-dis.c
--- mips-dis.c	2001/11/05 03:07:51	1.24
+++ mips-dis.c	2002/03/15 05:58:10
@@ -369,26 +369,26 @@
       break;
     case bfd_mach_mips5:
       *cputype = CPU_MIPS5;
       *isa = ISA_MIPS5;
       break;
     case bfd_mach_mips_sb1:
       *cputype = CPU_SB1;
       *isa = ISA_MIPS64 | INSN_SB1;
       break;
     case bfd_mach_mipsisa32:
-      * cputype = CPU_MIPS32;
-      * isa = ISA_MIPS32;
+      *cputype = CPU_MIPS32;
+      *isa = ISA_MIPS32;
       break;
     case bfd_mach_mipsisa64:
-      * cputype = CPU_MIPS64;
-      * isa = ISA_MIPS64;
+      *cputype = CPU_MIPS64;
+      *isa = ISA_MIPS64;
       break;
 
     default:
       *cputype = CPU_R3000;
       *isa = ISA_MIPS3;
       break;
     }
 }
 
 /* Check if the object uses NewABI conventions.  */



More information about the Binutils mailing list