(get_aligned_diff): Change type of branch_align to offsetT so that its
authorNick Clifton <nickc@redhat.com>
Wed, 20 Apr 2005 15:27:02 +0000 (15:27 +0000)
committerNick Clifton <nickc@redhat.com>
Wed, 20 Apr 2005 15:27:02 +0000 (15:27 +0000)
signedness matches that of target_size.

gas/ChangeLog
gas/config/tc-xtensa.c

index b75c42e2814e9d6e185a5f7ac1a956a43ff42ae4..0e3bb003910d85ec0d42bad6e4c1e80c527afb1d 100644 (file)
@@ -1,5 +1,9 @@
 2005-04-20  Nick Clifton  <nickc@redhat.com>
 
+       * config/tc-xtensa.c (get_aligned_diff): Change type of
+       branch_align to offsetT so that its signedness matches that of
+       target_size.
+
        * config/tc-mips.c (macro): Use sprintf_vma to convert a > 32 bit
        number into a readable string.
        (load_register): Likewise.
index 4e7524dc58872be7037f6f626485ca341c430cdc..62277ad3c7eb7ca72cc0c0588c461080d88db3df 100644 (file)
@@ -8179,7 +8179,7 @@ get_aligned_diff (fragS *fragP, addressT address, offsetT *max_diff)
   bfd_boolean is_loop;
   int align_power;
   offsetT opt_diff;
-  addressT branch_align;
+  offsetT branch_align;
 
   assert (fragP->fr_type == rs_machine_dependent);
   switch (fragP->fr_subtype)
This page took 0.034387 seconds and 4 git commands to generate.