diff options
author | xur <xur@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-11 17:02:18 +0000 |
---|---|---|
committer | xur <xur@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-11 17:02:18 +0000 |
commit | a60d8a99fabdcb6346fa441b2877365f5937e713 (patch) | |
tree | 9ef7ce01282d9129a8c17231b65c9cad283d6b7f /libgcc | |
parent | f812f773e59075240d9365e518e09aba00882aaa (diff) | |
download | gcc-a60d8a99fabdcb6346fa441b2877365f5937e713.tar.gz |
2014-07-11 Rong Xu <xur@google.com>
* libgcov-util.c (gcov_max_filename): Fix declartion.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212463 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/libgcov-util.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 759cd820b2b..5334959f041 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2014-07-11 Rong Xu <xur@google.com> + + * libgcov-util.c (gcov_max_filename): Fix declartion. + 2014-07-10 Rong Xu <xur@google.com> Add gcov-tool: an offline gcda profile processing tool diff --git a/libgcc/libgcov-util.c b/libgcc/libgcov-util.c index 6dddec59490..fc67979fcb8 100644 --- a/libgcc/libgcov-util.c +++ b/libgcc/libgcov-util.c @@ -38,7 +38,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see extern gcov_position_t gcov_position(); extern int gcov_is_error(); -extern gcov_unsigned_t gcov_max_filename; +extern size_t gcov_max_filename; /* Verbose mode for debug. */ static int verbose; |