[gas/testsuite/ChangeLog]
[deliverable/binutils-gdb.git] / opcodes / pj-dis.c
index 1f486ccf8fee8e9724b189e926eca35c4adacdbd..b8b81a96a7ecc6e2b7aff130021d216ca4d3999e 100644 (file)
@@ -1,5 +1,5 @@
 /* pj-dis.c -- Disassemble picoJava instructions.
-   Copyright 1999, 2000 Free Software Foundation, Inc.
+   Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
    Contributed by Steve Chamberlain, of Transmeta (sac@pobox.com).
 
 This program is free software; you can redistribute it and/or modify
@@ -23,6 +23,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 extern const pj_opc_info_t pj_opc_info[512];
 
+static int get_int PARAMS ((bfd_vma, int *, struct disassemble_info *));
+
+
 static int
 get_int (memaddr, iptr, info)
      bfd_vma memaddr;
@@ -33,10 +36,10 @@ get_int (memaddr, iptr, info)
 
   int status = info->read_memory_func (memaddr, ival, 4, info);
 
-  *iptr = (ival[0] << 24) 
-    | (ival[1] << 16) 
-    | (ival[2] << 8) 
-    | (ival[3] << 0) ;
+  *iptr = (ival[0] << 24)
+    | (ival[1] << 16)
+    | (ival[2] << 8)
+    | (ival[3] << 0);
 
   return status;
 }
@@ -72,7 +75,7 @@ print_insn_pj (addr, info)
       fprintf_fn (stream, "%s", op->name);
 
       /* The tableswitch instruction is followed by the default
-        address, low value, high value and the destinations. */
+        address, low value, high value and the destinations.  */
 
       if (strcmp (op->name, "tableswitch") == 0)
        {
@@ -111,8 +114,8 @@ print_insn_pj (addr, info)
 
       /* The lookupswitch instruction is followed by the default
         address, element count and pairs of values and
-        addresses. */
-           
+        addresses.  */
+
       if (strcmp (op->name, "lookupswitch") == 0)
        {
          int count;
This page took 0.025086 seconds and 4 git commands to generate.