(get_aligned_diff): Change type of branch_align to offsetT so that its
signedness matches that of target_size.
This commit is contained in:
parent
3f6da72206
commit
5f9084e9c2
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue