diff options
author | Kristina Bessonova <kbessonova@accesssoftek.com> | 2019-12-11 20:52:49 +0300 |
---|---|---|
committer | Kristina Bessonova <kbessonova@accesssoftek.com> | 2019-12-13 16:08:25 +0300 |
commit | 1cc4b603ba79c8bf8f60790cff31f872e7d00142 (patch) | |
tree | d36a33d24a0e8b888361f5e81c7cbd3dbf765ac8 /llvm/test/tools/llvm-locstats | |
parent | 25305a9311d45bc602014b7ee7584e80675aaf59 (diff) | |
download | bcm5719-llvm-1cc4b603ba79c8bf8f60790cff31f872e7d00142.tar.gz bcm5719-llvm-1cc4b603ba79c8bf8f60790cff31f872e7d00142.zip |
[llvm-dwarfdump][Statistics] Change the coverage buckets representation. NFC
Summary:
This changes the representation of 'coverage buckets' in llvm-dwarfdump and
llvm-locstats to one that makes more clear what the buckets contain.
See some related details in D71070.
Reviewers: djtodoro, aprantl, cmtice, jhenderson
Subscribers: llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71366
Diffstat (limited to 'llvm/test/tools/llvm-locstats')
-rw-r--r-- | llvm/test/tools/llvm-locstats/locstats.ll | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/llvm/test/tools/llvm-locstats/locstats.ll b/llvm/test/tools/llvm-locstats/locstats.ll index 911abf5b711..77621b24212 100644 --- a/llvm/test/tools/llvm-locstats/locstats.ll +++ b/llvm/test/tools/llvm-locstats/locstats.ll @@ -5,16 +5,16 @@ ; ; Test the llvm-locstats output. ; LOCSTATS: 0% 0 0% -; LOCSTATS: 1-9% 0 0% -; LOCSTATS: 10-19% 0 0% -; LOCSTATS: 20-29% 1 11% -; LOCSTATS: 30-39% 0 0% -; LOCSTATS: 40-49% 1 11% -; LOCSTATS: 50-59% 1 11% -; LOCSTATS: 60-69% 0 0% -; LOCSTATS: 70-79% 0 0% -; LOCSTATS: 80-89% 3 33% -; LOCSTATS: 90-99% 1 11% +; LOCSTATS: [1%,10%) 0 0% +; LOCSTATS: [10%,20%) 0 0% +; LOCSTATS: [20%,30%) 1 11% +; LOCSTATS: [30%,40%) 0 0% +; LOCSTATS: [40%,50%) 1 11% +; LOCSTATS: [50%,60%) 1 11% +; LOCSTATS: [60%,70%) 0 0% +; LOCSTATS: [70%,80%) 0 0% +; LOCSTATS: [80%,90%) 3 33% +; LOCSTATS: [90%,100%) 1 11% ; LOCSTATS: 100% 2 22% ; ; The source code of the test case: |