aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorVladimir Makarov <vmakarov@redhat.com>2008-06-10 18:52:50 +0000
committerVladimir Makarov <vmakarov@redhat.com>2008-06-10 18:52:50 +0000
commitacb0de2e5166f314004e145aa27ebab248b816ea (patch)
treeb692094c1d0fb047da438b15c426d0728e5ae3df /gcc
parent74c088ea4d4931ebdd44bb990bb38b9464b97801 (diff)
2008-06-10 Vladimir Makarov <vmakarov@redhat.com>
* ira-int.h (allocno_copy): Change comments. * ira-conflicts.c (build_conflict_bit_table): Use cast in printf for %ld. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/ira@136637 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/ira-conflicts.c4
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 <vmakarov@redhat.com>
+ * 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 <vmakarov@redhat.com>
+
* 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)