minor formatting changes
[deliverable/binutils-gdb.git] / opcodes / mcore-dis.c
index 36612a2e6f77db2ad8fe9f3b9d1b993c077b15a4..793de68c73f9073da3e84097240f76cce8d16f76 100644 (file)
@@ -13,7 +13,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
 #define STATIC_TABLE
@@ -57,10 +57,6 @@ static const unsigned short imsk[] =
     /* OMc */ 0xFF00,
     /* SIa */ 0xFE00,
 
-/* start-sanitize-m340 */
-  /* MULSH */ 0xFF00,
-/* end-sanitize-m340 */
-                
     /* JC  */ 0,               /* JC,JU,JL don't appear in object */
     /* JU  */ 0,
     /* JL  */ 0,
@@ -109,16 +105,7 @@ print_insn_mcore (memaddr, info)
       return -1;
     }
 
-/* start-sanitize-m340 */
-  if (info->endian == BFD_ENDIAN_BIG)
-/* end-sanitize-m340 */
     inst = (ibytes[0] << 8) | ibytes[1];
-/* start-sanitize-m340 */
-  else if (info->endian == BFD_ENDIAN_LITTLE)
-    inst = (ibytes[1] << 8) | ibytes[0];
-  else
-    abort ();
-/* end-sanitize-m340 */
 
   /* Just a linear search of the table.  */
   for (op = mcore_table; op->name != 0; op ++)
@@ -142,9 +129,6 @@ print_insn_mcore (memaddr, info)
        case JSR: fprintf (stream, "\t%s", name); break;
        case OC:  fprintf (stream, "\t%s, %s", name, crname[(inst >> 4) & 0x1F]); break;
        case O1R1: fprintf (stream, "\t%s, r1", name); break;
-/* start-sanitize-m340 */
-       case MULSH:
-/* end-sanitize-m340 */
        case O2: fprintf (stream, "\t%s, %s", name, grname[(inst >> 4) & 0xF]); break;
        case X1: fprintf (stream, "\tr1, %s", name); break;
        case OI: fprintf (stream, "\t%s, %d", name, ((inst >> 4) & 0x1F) + 1); break;
@@ -209,12 +193,6 @@ print_insn_mcore (memaddr, info)
                break;
              }
            
-/* start-sanitize-m340 */
-           if (info->endian == BFD_ENDIAN_LITTLE)
-             val = (ibytes[3] << 24) | (ibytes[2] << 16)
-               | (ibytes[1] << 8) | (ibytes[0]);
-           else
-/* end-sanitize-m340 */
              val = (ibytes[0] << 24) | (ibytes[1] << 16)
                | (ibytes[2] << 8) | (ibytes[3]);
            
@@ -240,12 +218,6 @@ print_insn_mcore (memaddr, info)
                break;
              }
 
-/* start-sanitize-m340 */
-           if (info->endian == BFD_ENDIAN_LITTLE)
-             val = (ibytes[3] << 24) | (ibytes[2] << 16)
-               | (ibytes[1] << 8) | (ibytes[0]);
-           else
-/* end-sanitize-m340 */
              val = (ibytes[0] << 24) | (ibytes[1] << 16)
                | (ibytes[2] << 8) | (ibytes[3]);
            
This page took 0.023444 seconds and 4 git commands to generate.