diff options
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-locstats.rst | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/llvm/docs/CommandGuide/llvm-locstats.rst b/llvm/docs/CommandGuide/llvm-locstats.rst index 8b99917a1ff..4f86522c9ed 100644 --- a/llvm/docs/CommandGuide/llvm-locstats.rst +++ b/llvm/docs/CommandGuide/llvm-locstats.rst @@ -18,8 +18,8 @@ pretty printing it in a more human readable way. The line 0% shows the number and the percentage of DIEs with no location information, but the line 100% shows the information for DIEs where there is location information in all code section bytes (where the variable or parameter -is in the scope). The line 50-59% shows the number and the percentage of DIEs -where the location information is between 50 and 59 percentage of its scope +is in the scope). The line [50%,60%) shows the number and the percentage of DIEs +where the location information is between 50 and 60 percentage of its scope covered. OPTIONS @@ -55,16 +55,16 @@ OUTPUT EXAMPLE cov% samples percentage(~) ------------------------------------------------- 0% 1 16% - 1-9% 0 0% - 10-19% 0 0% - 20-29% 0 0% - 30-39% 0 0% - 40-49% 0 0% - 50-59% 1 16% - 60-69% 0 0% - 70-79% 0 0% - 80-89% 1 16% - 90-99% 0 0% + [1%,10%) 0 0% + [10%,20%) 0 0% + [20%,30%) 0 0% + [30%,40%) 0 0% + [40%,50%) 0 0% + [50%,60%) 1 16% + [60%,70%) 0 0% + [70%,80%) 0 0% + [80%,90%) 1 16% + [90%,100%) 0 0% 100% 3 50% ================================================= -the number of debug variables processed: 6 |