From 53e976968a6fd27b3f1c4d153cbc34ba1da5a520 Mon Sep 17 00:00:00 2001 From: vmakarov Date: Tue, 10 Jun 2008 18:52:50 +0000 Subject: [PATCH] 2008-06-10 Vladimir Makarov * ira-int.h (allocno_copy): Change comments. * ira-conflicts.c (build_conflict_bit_table): Use cast in printf for %ld. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/ira@136637 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 7 +++++++ gcc/ira-conflicts.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 181d0e1db48..d7d508eeb23 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ 2008-06-10 Vladimir Makarov + * ira-int.h (allocno_copy): Change comments. + + * ira-conflicts.c (build_conflict_bit_table): Use cast in printf + for %ld. + +2008-06-10 Vladimir Makarov + * common.opt (fira-move-spills): Remove. * caller-save.c: Add more comments. diff --git a/gcc/ira-conflicts.c b/gcc/ira-conflicts.c index 057edd91984..258e27c7400 100644 --- a/gcc/ira-conflicts.c +++ b/gcc/ira-conflicts.c @@ -113,8 +113,8 @@ build_conflict_bit_table (void) fprintf (ira_dump_file, "+++Allocating %ld bytes for conflict table (uncompressed size %ld)\n", - allocated_words_num * sizeof (INT_TYPE), - allocno_set_words * allocnos_num * sizeof (INT_TYPE)); + (long) allocated_words_num * sizeof (INT_TYPE), + (long) allocno_set_words * allocnos_num * sizeof (INT_TYPE)); for (i = 0; i < max_point; i++) { for (r = start_point_ranges[i]; r != NULL; r = r->start_next) -- 2.11.4.GIT