]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2000-10-30 Kazu Hirata <kazu@hxi.com>
authorKazu Hirata <kazu@codesourcery.com>
Mon, 30 Oct 2000 21:59:01 +0000 (21:59 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Mon, 30 Oct 2000 21:59:01 +0000 (21:59 +0000)
* expr.c: Fix formatting.
* flonum-copy.c: Likewise.
* flonum.h: Likewise.
* gasp.c: Likewise.
* hash.c: Likewise.

gas/ChangeLog
gas/expr.c
gas/flonum-copy.c
gas/flonum.h
gas/gasp.c
gas/hash.c

index efe6c4908b29bc36906ddd04be34b925070a8d42..b4bbaae214d36bf3ecb66e71634ccefc350e989f 100644 (file)
@@ -1,3 +1,11 @@
+2000-10-30  Kazu Hirata  <kazu@hxi.com>
+
+       * expr.c: Fix formatting.
+       * flonum-copy.c: Likewise.
+       * flonum.h: Likewise.
+       * gasp.c: Likewise.
+       * hash.c: Likewise.
+
 2000-10-30  Hans-Peter Nilsson  <hp@bitrange.com>
 
        * as.h (OPTION_MD_BASE): Bump to 190.
index 9c14d4a522e500fd1c1f73ce921cbce5a431cc0f..8313d95a17b740e4ac46f494bb4a252bb2b73b07 100644 (file)
@@ -1417,9 +1417,8 @@ clean_up_expression (expressionP)
 #undef __
 #define __ O_illegal
 
-static const operatorT op_encoding[256] =
-{                              /* Maps ASCII -> operators.  */
-
+/* Maps ASCII -> operators.  */
+static const operatorT op_encoding[256] = {
   __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
   __, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
 
index 3fb29e72d4130513c67dcb062393b73c04ec5cb3..79a34c0048e1beae607715432670fb10221d6783 100644 (file)
@@ -14,8 +14,9 @@
    GNU General Public License for more details.
 
    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.  */
+   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.  */
 
 #include "as.h"
 
@@ -24,8 +25,8 @@ flonum_copy (in, out)
      FLONUM_TYPE *in;
      FLONUM_TYPE *out;
 {
-  unsigned int in_length;              /* 0 origin */
-  unsigned int out_length;             /* 0 origin */
+  unsigned int in_length;      /* 0 origin */
+  unsigned int out_length;     /* 0 origin */
 
   out->sign = in->sign;
   in_length = in->leader - in->low;
@@ -37,23 +38,22 @@ flonum_copy (in, out)
   else
     {
       out_length = out->high - out->low;
-      /*
-       * Assume no GAPS in packing of littlenums.
-       * I.e. sizeof(array) == sizeof(element) * number_of_elements.
-       */
+      /* Assume no GAPS in packing of littlenums.
+        I.e. sizeof(array) == sizeof(element) * number_of_elements.  */
       if (in_length <= out_length)
        {
          {
-           /*
-            * For defensive programming, zero any high-order littlenums we don't need.
-            * This is destroying evidence and wasting time, so why bother???
-            */
+           /* For defensive programming, zero any high-order
+              littlenums we don't need.  This is destroying evidence
+              and wasting time, so why bother???  */
            if (in_length < out_length)
              {
-               memset ((char *) (out->low + in_length + 1), '\0', out_length - in_length);
+               memset ((char *) (out->low + in_length + 1), '\0',
+                       out_length - in_length);
              }
          }
-         memcpy ((void *) (out->low), (void *) (in->low), ((in_length + 1) * sizeof (LITTLENUM_TYPE)));
+         memcpy ((void *) (out->low), (void *) (in->low),
+                 ((in_length + 1) * sizeof (LITTLENUM_TYPE)));
          out->exponent = in->exponent;
          out->leader = in->leader - in->low + out->low;
        }
@@ -63,11 +63,10 @@ flonum_copy (in, out)
 
          shorten = in_length - out_length;
          /* Assume out_length >= 0 ! */
-         memcpy ((void *) (out->low), (void *) (in->low + shorten), ((out_length + 1) * sizeof (LITTLENUM_TYPE)));
+         memcpy ((void *) (out->low), (void *) (in->low + shorten),
+                 ((out_length + 1) * sizeof (LITTLENUM_TYPE)));
          out->leader = out->high;
          out->exponent = in->exponent + shorten;
        }
     }                          /* if any significant bits */
-}                              /* flonum_copy() */
-
-/* end of flonum_copy.c */
+}
index ace99a0e4b70dd2971dddfab8328416e7bb0321e..d1a504288accd42006399e293eba4c42d4d10778 100644 (file)
@@ -49,8 +49,7 @@
    A sign value of 'P' means we've been asked to assemble +Inf
    A sign value of 'N' means we've been asked to assemble -Inf
    */
-struct FLONUM_STRUCT
-{
+struct FLONUM_STRUCT {
   LITTLENUM_TYPE *low;         /* low order littlenum of a bignum */
   LITTLENUM_TYPE *high;                /* high order littlenum of a bignum */
   LITTLENUM_TYPE *leader;      /* -> 1st non-zero littlenum */
@@ -76,9 +75,8 @@ typedef struct FLONUM_STRUCT FLONUM_TYPE;
 extern const FLONUM_TYPE flonum_positive_powers_of_ten[];
 extern const FLONUM_TYPE flonum_negative_powers_of_ten[];
 extern const int table_size_of_flonum_powers_of_ten;
-/* Flonum_XXX_powers_of_ten[] table has */
-/* legal indices from 0 to */
-/* + this number inclusive.  */
+/* Flonum_XXX_powers_of_ten[] table has legal indices from 0 to
+   + this number inclusive.  */
 
 /***********************************************************************\
  *                                                                     *
index b8355ece71e1cb133f25461732f22b463c652e4d..b38bbf83f721290a36e54acad94ea5572b98fa2a 100644 (file)
@@ -124,32 +124,27 @@ static char chartype[256];
    a bug in the user's macro structure.  */
 
 #define IFNESTING 100
-struct
-{
+struct {
   int on;                      /* Is the level being output.  */
   int hadelse;                 /* Has an aelse been seen.  */
-}
-ifstack[IFNESTING];
+} ifstack[IFNESTING];
+
 int ifi;
 
 /* The final and intermediate results of expression evaluation are kept in
    exp_t's.  Note that a symbol is not an sb, but a pointer into the input
    line.  It must be coped somewhere safe before the next line is read in.  */
 
-typedef struct
-{
+typedef struct {
   char *name;
   int len;
-}
-symbol;
+} symbol;
 
-typedef struct
-{
+typedef struct {
   int value;                   /* Constant part.  */
   symbol add_symbol;           /* Name part.  */
   symbol sub_symbol;           /* Name part.  */
-}
-exp_t;
+} exp_t;
 
 /* Hashing is done in a pretty standard way.  A hash_table has a
    pointer to a vector of pointers to hash_entrys, and the size of the
@@ -158,20 +153,17 @@ exp_t;
    with the same hash are kept in a chain.  */
 
 /* What the data in a hash_entry means.  */
-typedef enum
-{
+typedef enum {
   hash_integer,                        /* Name->integer mapping.  */
   hash_string,                 /* Name->string mapping.  */
   hash_macro,                  /* Name is a macro.  */
   hash_formal                  /* Name is a formal argument.  */
 } hash_type;
 
-typedef struct hs
-{
+typedef struct hs {
   sb key;                      /* Symbol name.  */
   hash_type type;              /* Symbol meaning.  */
-  union
-  {
+  union {
     sb s;
     int i;
     struct macro_struct *m;
@@ -180,8 +172,7 @@ typedef struct hs
   struct hs *next;             /* Next hash_entry with same hash key.  */
 } hash_entry;
 
-typedef struct
-{
+typedef struct {
   hash_entry **table;
   int size;
 } hash_table;
@@ -201,13 +192,11 @@ typedef struct
    the same stack index.  If we're being reasonable, we can detect
    recusive expansion by checking the index is reasonably small.  */
 
-typedef enum
-{
+typedef enum {
   include_file, include_repeat, include_while, include_macro
 } include_type;
 
-struct include_stack
-{
+struct include_stack {
   sb pushback;                 /* Current pushback stream.  */
   int pushback_index;          /* Next char to read from stream.  */
   FILE *handle;                        /* Open file.  */
@@ -215,19 +204,17 @@ struct include_stack
   int linecount;               /* Number of lines read so far.  */
   include_type type;
   int index;                   /* Index of this layer.  */
-}
-include_stack[MAX_INCLUDES];
+} include_stack[MAX_INCLUDES];
 
 struct include_stack *sp;
 #define isp (sp - include_stack)
 
 /* Include file list.  */
 
-typedef struct include_path
-{
+typedef struct include_path {
   struct include_path *next;
   sb path;
-}  include_path;
+} include_path;
 
 include_path *paths_head;
 include_path *paths_tail;
@@ -3079,15 +3066,13 @@ chartype_init ()
 #define K_IRP          (PROCESS|54)
 #define K_IRPC         (PROCESS|55)
 
-struct keyword
-{
+struct keyword {
   char *name;
   int code;
   int extra;
 };
 
-static struct keyword kinfo[] =
-{
+static struct keyword kinfo[] = {
   { "EQU", K_EQU, 0 },
   { "ALTERNATE", K_ALTERNATE, 0 },
   { "ASSIGN", K_ASSIGN, 0 },
@@ -3138,8 +3123,7 @@ static struct keyword kinfo[] =
    handle them here as well, in case they are used in a recursive
    macro to end the recursion.  */
 
-static struct keyword mrikinfo[] =
-{
+static struct keyword mrikinfo[] = {
   { "IFEQ", K_IFEQ, 0 },
   { "IFNE", K_IFNE, 0 },
   { "IFLT", K_IFLT, 0 },
index 094340873fce07b80cfa746232865868ba1f52ee..f2e98a69e8b0409288211c309eccabc71c874311 100644 (file)
@@ -37,8 +37,7 @@
 
 /* An entry in a hash table.  */
 
-struct hash_entry
-{
+struct hash_entry {
   /* Next entry for this hash code.  */
   struct hash_entry *next;
   /* String being hashed.  */
@@ -52,8 +51,7 @@ struct hash_entry
 
 /* A hash table.  */
 
-struct hash_control
-{
+struct hash_control {
   /* The hash array.  */
   struct hash_entry **table;
   /* The number of slots in the hash table.  */