mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 14:52:22 +08:00
Add support for building on a 64-bit Windows host.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2007-07-12 Kai Tietz <kai.tietz@onevision.com>
|
||||
|
||||
* cg_print.c: Force cast of sizeof to be a long.
|
||||
* hist.c: Likewise.
|
||||
|
||||
2007-07-06 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* basic_blocks.c: Update copyright notice to refer to GPLv3.
|
||||
|
@ -76,7 +76,7 @@ print_header ()
|
||||
}
|
||||
|
||||
printf (_("\ngranularity: each sample hit covers %ld byte(s)"),
|
||||
(long) hist_scale * sizeof (UNIT));
|
||||
(long) hist_scale * (long) sizeof (UNIT));
|
||||
|
||||
if (print_time > 0.0)
|
||||
printf (_(" for %.2f%% of %.2f seconds\n\n"),
|
||||
|
@ -464,7 +464,7 @@ print_header (int prefix)
|
||||
if (bsd_style_output)
|
||||
{
|
||||
printf (_("\ngranularity: each sample hit covers %ld byte(s)"),
|
||||
(long) hist_scale * sizeof (UNIT));
|
||||
(long) hist_scale * (long) sizeof (UNIT));
|
||||
if (total_time > 0.0)
|
||||
{
|
||||
printf (_(" for %.2f%% of %.2f %s\n\n"),
|
||||
|
Reference in New Issue
Block a user