* symbols.c (resolve_symbol_value): Initialise final_val.
* subsegs.c (subsegs_print_statistics): Cast frchp to void *.
This commit is contained in:
parent
b4f96c78d9
commit
03e83a45ae
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-06-12 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* symbols.c (resolve_symbol_value): Initialise final_val.
|
||||
|
||||
* subsegs.c (subsegs_print_statistics): Cast frchp to void *.
|
||||
|
||||
2002-06-11 Tom Rix <trix@redhat.com>
|
||||
|
||||
* config/tc-ppc.c (ppc_subseg_align): Delete.
|
||||
|
|
|
@ -652,7 +652,7 @@ subsegs_print_statistics (file)
|
|||
count++;
|
||||
}
|
||||
fprintf (file, "\n");
|
||||
fprintf (file, "\t%p %-10s\t%10d frags\n", frchp,
|
||||
fprintf (file, "\t%p %-10s\t%10d frags\n", (void *) frchp,
|
||||
segment_name (frchp->frch_seg), count);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -839,7 +839,7 @@ resolve_symbol_value (symp)
|
|||
symbolS *symp;
|
||||
{
|
||||
int resolved;
|
||||
valueT final_val;
|
||||
valueT final_val = 0;
|
||||
segT final_seg;
|
||||
|
||||
#ifdef BFD_ASSEMBLER
|
||||
|
|
Loading…
Reference in a new issue