diff options
author | Jørgen Kvalsvik <j@lambda.is> | 2024-06-25 08:41:45 +0200 |
---|---|---|
committer | Jørgen Kvalsvik <j@lambda.is> | 2024-06-26 12:19:22 +0200 |
commit | 0bf002100453a0f531855c093f095dc15274a78c (patch) | |
tree | 26c8d6a09a8b2bea324be8b87995191cf8fddc1a /gcc | |
parent | 229bf66f8d5d6df2997cee37575241cae944e4a6 (diff) | |
download | gcc-0bf002100453a0f531855c093f095dc15274a78c.zip gcc-0bf002100453a0f531855c093f095dc15274a78c.tar.gz gcc-0bf002100453a0f531855c093f095dc15274a78c.tar.bz2 |
Use the term MC/DC in help for gcov --conditions
Without key terms like "masking" and "MC/DC" it is not at all obvious
what --conditions actually reports on, and there is no easy path for the
user to figure out. By at least including the two key terms MC/DC and
masking users have something to search for.
gcc/ChangeLog:
* gcov.cc (print_usage): Reference masking MC/DC.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcov.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcov.cc b/gcc/gcov.cc index 0d4ef14..6f30557 100644 --- a/gcc/gcov.cc +++ b/gcc/gcov.cc @@ -973,7 +973,7 @@ print_usage (int error_p) fnotice (file, " -c, --branch-counts Output counts of branches taken\n\ rather than percentages\n"); fnotice (file, " -g, --conditions Include modified condition/decision\n\ - coverage in output\n"); + coverage (masking MC/DC) in output\n"); fnotice (file, " -d, --display-progress Display progress information\n"); fnotice (file, " -D, --debug Display debugging dumps\n"); fnotice (file, " -f, --function-summaries Output summaries for each function\n"); |