diff options
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 4 | ||||
-rw-r--r-- | libgcc/libgcov.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 2424cab..bcfd22b 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2012-07-22 Steven Bosscher <steven@gcc.gnu.org> + + * libgcov.c (__gcov_ior_profiler): Benign comment fix. + 2012-07-19 Tristan Gingold <gingold@adacore.com> Richard Henderson <rth@redhat.com> diff --git a/libgcc/libgcov.c b/libgcc/libgcov.c index 8ed8971..a22e8f4 100644 --- a/libgcc/libgcov.c +++ b/libgcc/libgcov.c @@ -1040,8 +1040,7 @@ __gcov_average_profiler (gcov_type *counters, gcov_type value) #endif #ifdef L_gcov_ior_profiler -/* Increase corresponding COUNTER by VALUE. FIXME: Perhaps we want - to saturate up. */ +/* Bitwise-OR VALUE into COUNTER. */ void __gcov_ior_profiler (gcov_type *counters, gcov_type value) |