summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-12 04:10:36 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-12 04:10:36 +0000
commitc50db3a3a171b88795fce000948beddfb722a624 (patch)
treef75052245a41eeb220f210d90fc6e4b40f4b1861
parent727ac8369710722c90625026cf453950947c2c55 (diff)
downloadppe42-gcc-c50db3a3a171b88795fce000948beddfb722a624.tar.gz
ppe42-gcc-c50db3a3a171b88795fce000948beddfb722a624.zip
* cgraphunit.c (cgraph_inlined_into, cgraph_inlined_calees): Fix
warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69264 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/cgraphunit.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bdb8c28390b..811fba7ab4b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 12 06:09:38 CEST 2003 Jan Hubicka <jh@suse.cz>
+
+ * cgraphunit.c (cgraph_inlined_into, cgraph_inlined_calees): Fix
+ warning.
+
Sat Jul 12 03:06:01 CEST 2003 Jan Hubicka <jh@suse.cz>
Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index df188d58d0b..4ab5b6688ad 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -476,7 +476,7 @@ cgraph_inlined_into (struct cgraph_node *node, struct cgraph_node **array)
fprintf (cgraph_dump_file, " %s", cgraph_node_name (array[i]));
if (INLINED_TIMES (array[i]) != 1)
fprintf (cgraph_dump_file, " (%i times)",
- INLINED_TIMES (array[i]));
+ (int)INLINED_TIMES (array[i]));
}
fprintf (cgraph_dump_file, "\n");
}
@@ -573,7 +573,7 @@ cgraph_inlined_callees (struct cgraph_node *node, struct cgraph_node **array)
fprintf (cgraph_dump_file, " %s", cgraph_node_name (array[i]));
if (INLINED_TIMES (array[i]) != 1)
fprintf (cgraph_dump_file, " (%i times)",
- INLINED_TIMES (array[i]));
+ (int)INLINED_TIMES (array[i]));
}
fprintf (cgraph_dump_file, "\n");
}
OpenPOWER on IntegriCloud