gas/write.c use better types
authorAlan Modra <amodra@gmail.com>
Wed, 5 Apr 2023 09:45:18 +0000 (19:15 +0930)
committerAlan Modra <amodra@gmail.com>
Thu, 6 Apr 2023 00:21:38 +0000 (09:51 +0930)
A tiny tidy.

* write.c (frags_chained): Make it a bool.
(n_fixups): Make it unsigned.

gas/write.c

index 8273b7a42f15633d0d4d706dc0491cdab0a32e16..4ce6f997caaec8d28ce80a7b0673da4985603376 100644 (file)
@@ -124,9 +124,9 @@ void print_fixup (fixS *);
    chained these all together into a segment, any relocs we add after
    that must be attached to a segment.  This will include relocs added
    in md_estimate_size_for_relax, for example.  */
-static int frags_chained = 0;
+static bool frags_chained = false;
 
-static int n_fixups;
+static unsigned int n_fixups;
 
 #define RELOC_ENUM enum bfd_reloc_code_real
 
@@ -416,7 +416,7 @@ chain_frchains_together (bfd *abfd ATTRIBUTE_UNUSED,
 
   /* Now that we've chained the frags together, we must add new fixups
      to the segment, not to the frag chain.  */
-  frags_chained = 1;
+  frags_chained = true;
 }
 
 static void