mirror of git://gcc.gnu.org/git/gcc.git
gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of INT64_MAX.
* gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of INT64_MAX. From-SVN: r239192
This commit is contained in:
parent
6ef835c6c0
commit
4ab6520836
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-08-06 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* gcov.c (handle_cycle): Use INTTYPE_MAXIMUM (int64_t) instead of
|
||||||
|
INT64_MAX.
|
||||||
|
|
||||||
2016-08-06 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
|
2016-08-06 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
|
||||||
|
|
||||||
* match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
|
* match.pd ((intptr_t) x eq/ne CST to x eq/ne (typeof x) cst): Disable
|
||||||
|
|
|
||||||
|
|
@ -465,7 +465,7 @@ handle_cycle (const arc_vector_t &edges, int64_t &count)
|
||||||
{
|
{
|
||||||
/* Find the minimum edge of the cycle, and reduce all nodes in the cycle by
|
/* Find the minimum edge of the cycle, and reduce all nodes in the cycle by
|
||||||
that amount. */
|
that amount. */
|
||||||
int64_t cycle_count = INT64_MAX;
|
int64_t cycle_count = INTTYPE_MAXIMUM (int64_t);
|
||||||
for (unsigned i = 0; i < edges.size (); i++)
|
for (unsigned i = 0; i < edges.size (); i++)
|
||||||
{
|
{
|
||||||
int64_t ecount = edges[i]->cs_count;
|
int64_t ecount = edges[i]->cs_count;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue