diff options
author | Nathan Sidwell <nathan@acm.org> | 2014-08-01 10:05:42 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2014-08-01 10:05:42 +0000 |
commit | b98a872b2227a0a075cce2549db7bb415fe6e083 (patch) | |
tree | 8e8e30935e1249bb36ac049299e6fb8117983da3 /libgcc/libgcov-driver.c | |
parent | 4d49c6e1495d4fb524123042ef1e52738b699733 (diff) | |
download | gcc-b98a872b2227a0a075cce2549db7bb415fe6e083.zip gcc-b98a872b2227a0a075cce2549db7bb415fe6e083.tar.gz gcc-b98a872b2227a0a075cce2549db7bb415fe6e083.tar.bz2 |
Makefile.in (LIBGCOV_MERGE, [...]): Reformat.
* Makefile.in (LIBGCOV_MERGE, LIBGCOV_PROFILER,
LIBGCOV_INTERFACE): Reformat.
* libgcov-driver.c (gcov_exit, __gcov_init): Disable when
IN_GCOV_TOOL.
* libgcov-interface.c: Reformat some comments.
(__gcov_flush_mx): Add declaration. Tidy up definition.
From-SVN: r213442
Diffstat (limited to 'libgcc/libgcov-driver.c')
-rw-r--r-- | libgcc/libgcov-driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgcc/libgcov-driver.c b/libgcc/libgcov-driver.c index 8c2510f1..5075535 100644 --- a/libgcc/libgcov-driver.c +++ b/libgcc/libgcov-driver.c @@ -775,6 +775,7 @@ gcov_do_dump (struct gcov_info *list, int run_counted) free (gf.filename); } +#if !IN_GCOV_TOOL void gcov_exit (void) { @@ -840,6 +841,6 @@ __gcov_init (struct gcov_info *info) } info->version = 0; } - +#endif /* !IN_GCOV_TOOL */ #endif /* L_gcov */ #endif /* inhibit_libc */ |