diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-10-15 10:12:14 +0000 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-10-15 10:12:14 +0000 |
commit | 095531ea941992a0e03bd388cff8a9fae53d3498 (patch) | |
tree | 216a02eabd6dffd2ddca8f0532dd3a6899100aed /llvm/utils/llvm-locstats | |
parent | e0916f4fbe9e9cde88150488eaddceeef277beb2 (diff) | |
download | bcm5719-llvm-095531ea941992a0e03bd388cff8a9fae53d3498.tar.gz bcm5719-llvm-095531ea941992a0e03bd388cff8a9fae53d3498.zip |
[llvm-locstats] Fix 'only params' no entry value stats
Adding the missing line.
llvm-svn: 374875
Diffstat (limited to 'llvm/utils/llvm-locstats')
-rwxr-xr-x | llvm/utils/llvm-locstats/llvm-locstats.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/llvm-locstats/llvm-locstats.py b/llvm/utils/llvm-locstats/llvm-locstats.py index 22e5ae6b223..4df525ed1a9 100755 --- a/llvm/utils/llvm-locstats/llvm-locstats.py +++ b/llvm/utils/llvm-locstats/llvm-locstats.py @@ -167,6 +167,7 @@ def Main(): cov_category = \ "params (excluding the debug entry values) " \ "with {} of its scope covered".format(cov_bucket) + variables_coverage_map[cov_bucket] = json_parsed[cov_category] else: # Read the JSON for both local variables and formal parameters. variables_total = \ |