diff options
author | Jakub Jelinek <jakub@redhat.com> | 2016-08-06 12:30:49 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2016-08-06 12:30:49 +0200 |
commit | 4ab652083684015ace7812218f4bcb082bd07f00 (patch) | |
tree | a67920a6add239bb84fdaed5a72f769ac9d77075 /gcc/gcov.c | |
parent | 6ef835c6c0c1d141e5b926dd8f9b41a6b68c783a (diff) | |
download | gcc-4ab652083684015ace7812218f4bcb082bd07f00.zip gcc-4ab652083684015ace7812218f4bcb082bd07f00.tar.gz gcc-4ab652083684015ace7812218f4bcb082bd07f00.tar.bz2 |
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
Diffstat (limited to 'gcc/gcov.c')
-rw-r--r-- | gcc/gcov.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 that amount. */ - int64_t cycle_count = INT64_MAX; + int64_t cycle_count = INTTYPE_MAXIMUM (int64_t); for (unsigned i = 0; i < edges.size (); i++) { int64_t ecount = edges[i]->cs_count; |