2001-02-20 Kazu Hirata <kazu@hxi.com>
authorKazu Hirata <kazu@codesourcery.com>
Wed, 21 Feb 2001 00:04:47 +0000 (00:04 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Wed, 21 Feb 2001 00:04:47 +0000 (00:04 +0000)
* tc-pdp11.c: Fix formatting.
* tc-pdp11.h: Likewise.

gas/ChangeLog
gas/config/tc-pdp11.c
gas/config/tc-pdp11.h

index 09a591df4d6ee96f905078a34d1b24766429218b..fd7ae2eb390846602df8c41b06d8cd4e2de6d6b7 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-20  Kazu Hirata  <kazu@hxi.com>
+
+       * tc-pdp11.c: Fix formatting.
+       * tc-pdp11.h: Likewise.
+
 2001-02-20  Bo Thorsen  <bo@suse.de>
 
        * config/tc-i386.c (tc_i386_fix_adjustable): Fix GOTPCREL GOT
index 6935bcea9bd8d731d95e4da63ce8e1d849d2bbe2..0cde11c66a2c89b8f7c5dec685d55b01b3e4874b 100644 (file)
@@ -73,7 +73,7 @@ int asm_option[ASM_OPT_NUM];
    another comment */
 CONST char comment_chars[] = "#/";
 
-/* These chars only start a comment at the beginning of a line. */
+/* These chars only start a comment at the beginning of a line.  */
 CONST char line_comment_chars[] = "#/";
 
 CONST char line_separator_chars[] = ";";
@@ -96,7 +96,6 @@ CONST pseudo_typeS md_pseudo_table[] =
   { 0, 0, 0 },
 };
 
-
 static void
 init_defaults ()
 {
@@ -122,7 +121,7 @@ md_begin ()
   insn_hash = hash_new ();
   if (insn_hash == NULL)
     as_fatal ("Virtual memory exhausted");
-    
+
   for (i = 0; i < pdp11_num_opcodes; i++)
     hash_insert (insn_hash, pdp11_opcodes[i].name, (PTR)(pdp11_opcodes + i));
   for (i = 0; i < pdp11_num_aliases; i++)
@@ -159,13 +158,13 @@ md_number_to_chars (con, value, nbytes)
       break;
     default:
       BAD_CASE (nbytes);
-    }            
+    }
 }
 
 /* Fix up some data or instructions after we find out the value of a symbol
    that they reference.  */
 
-int                            /* Knows about order of bytes in address. */
+int                            /* Knows about order of bytes in address.  */
 md_apply_fix (fixP, value)
      fixS *fixP;
      valueT *value;
@@ -211,8 +210,8 @@ md_apply_fix (fixP, value)
 
 long
 md_chars_to_number (con, nbytes)
-     unsigned char con[];      /* Low order byte 1st. */
-     int nbytes;               /* Number of bytes in the input. */
+     unsigned char con[];      /* Low order byte 1st.  */
+     int nbytes;               /* Number of bytes in the input.  */
 {
   /* On a PDP-11, 0x1234 is stored as "\x12\x34", and
    * 0x12345678 is stored as "\x56\x78\x12\x34". It's
@@ -234,7 +233,7 @@ md_chars_to_number (con, nbytes)
     default:
       BAD_CASE (nbytes);
       return 0;
-    }            
+    }
 }
 \f
 static char *
@@ -400,7 +399,7 @@ parse_op_no_deferred (char *str, struct pdp11_code *operand)
       break;
 
     case '#':                          /* immediate */
-    case '$': 
+    case '$':
       str = parse_expression (str + 1, operand);
       if (operand->error)
        return str;
@@ -807,7 +806,7 @@ md_assemble (instruction_string)
        insn.reloc = op1.reloc;
       }
       break;
-      
+
     default:
       BAD_CASE (op->type);
     }
@@ -825,7 +824,7 @@ md_assemble (instruction_string)
 
   {
     char *to = NULL;
-    
+
     if (err)
       {
        as_bad (err);
@@ -952,7 +951,7 @@ set_option (arg)
     pdp11_extension[PDP11_MFPT] = yes;
   else if (strncmp (arg, "mproc", 5) == 0 ||   /* multiprocessor insns: */
           strncmp (arg, "multiproc", 9) == 0 ) /* TSTSET, WRTLCK */
-    pdp11_extension[PDP11_MPROC] = yes;        
+    pdp11_extension[PDP11_MPROC] = yes;
   else if (strcmp (arg, "mxps") == 0)          /* move from/to proc status */
     pdp11_extension[PDP11_MXPS] = yes;
   else if (strcmp (arg, "pic") == 0)           /* position-independent code */
@@ -1140,7 +1139,7 @@ set_machine_model (arg)
           strcmp (arg, "94") == 0)
     return set_cpu_model ("j11") &&            /* J11 */
            set_option ("fpp");                 /* All J11 machines come */
-                                               /* with FPP installed. */
+                                               /* with FPP installed.  */
   else
     return 0;
 }
@@ -1223,7 +1222,7 @@ struct
   CONST char *pattern;
   int opt;
   CONST char *description;
-} options;  
+} options;
 
 static struct options extension_opts[] =
 {
@@ -1297,10 +1296,10 @@ struct
   { "PDP-11 instruction set extentions",
     extension_opts,
     sizeof extension_opts / sizeof extension_opts[0] },
-  { "PDP-11 CPU model options", 
+  { "PDP-11 CPU model options",
     cpu_opts,
     sizeof cpu_opts / sizeof cpu_opts[0] },
-  { "PDP-11 machine model options", 
+  { "PDP-11 machine model options",
     model_opts,
     sizeof model_opts / sizeof model_opts[0] },
 };
index eb2e3603fa82a636c7651e7a79188d3c55773f54..9d5c4090539933dde8bbd9dcfe7ea9088683d070 100644 (file)
@@ -16,7 +16,7 @@
    You should have received a copy of the GNU General Public License
    along with GAS; see the file COPYING.  If not, write to the Free
    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA. */
+   02111-1307, USA.  */
 
 #define TC_PDP11 1
 
This page took 0.03562 seconds and 4 git commands to generate.