diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-10-02 13:24:45 +0000 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-10-02 13:24:45 +0000 |
commit | 45297645aaba19e0cd2e6a4d331b661e1d79c272 (patch) | |
tree | f424fe3a9240bf588e139ce8085ca924bd314de8 | |
parent | 822b298958908a41ad748bf25053eed47408c1d7 (diff) | |
download | bcm5719-llvm-45297645aaba19e0cd2e6a4d331b661e1d79c272.tar.gz bcm5719-llvm-45297645aaba19e0cd2e6a4d331b661e1d79c272.zip |
[llvm-dwarfdump] Fix dumping of wrong locstats map
llvm-svn: 373469
-rw-r--r-- | llvm/test/tools/llvm-dwarfdump/X86/locstats.ll | 6 | ||||
-rw-r--r-- | llvm/tools/llvm-dwarfdump/Statistics.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/tools/llvm-dwarfdump/X86/locstats.ll b/llvm/test/tools/llvm-dwarfdump/X86/locstats.ll index e88667390ea..a295ad8e402 100644 --- a/llvm/test/tools/llvm-dwarfdump/X86/locstats.ll +++ b/llvm/test/tools/llvm-dwarfdump/X86/locstats.ll @@ -71,7 +71,7 @@ ; CHECK: "vars with 80-89% of its scope covered":1 ; CHECK: "vars with 90-99% of its scope covered":0 ; CHECK: "vars with 100% of its scope covered":1 -; CHECK: "vars (excluding the debug entry values) with 0% of its scope covered":0 +; CHECK: "vars (excluding the debug entry values) with 0% of its scope covered":1 ; CHECK: "vars (excluding the debug entry values) with 1-9% of its scope covered":0 ; CHECK: "vars (excluding the debug entry values) with 10-19% of its scope covered":0 ; CHECK: "vars (excluding the debug entry values) with 20-29% of its scope covered":0 @@ -80,9 +80,9 @@ ; CHECK: "vars (excluding the debug entry values) with 50-59% of its scope covered":1 ; CHECK: "vars (excluding the debug entry values) with 60-69% of its scope covered":0 ; CHECK: "vars (excluding the debug entry values) with 70-79% of its scope covered":0 -; CHECK: "vars (excluding the debug entry values) with 80-89% of its scope covered":0 +; CHECK: "vars (excluding the debug entry values) with 80-89% of its scope covered":1 ; CHECK: "vars (excluding the debug entry values) with 90-99% of its scope covered":0 -; CHECK: "vars (excluding the debug entry values) with 100% of its scope covered":1} +; CHECK: "vars (excluding the debug entry values) with 100% of its scope covered":1 ; ; The source code of the test case: ; extern void fn3(int *); diff --git a/llvm/tools/llvm-dwarfdump/Statistics.cpp b/llvm/tools/llvm-dwarfdump/Statistics.cpp index d6bf02b69d1..c29ad783a9e 100644 --- a/llvm/tools/llvm-dwarfdump/Statistics.cpp +++ b/llvm/tools/llvm-dwarfdump/Statistics.cpp @@ -600,7 +600,7 @@ bool collectStatsForObjectFile(ObjectFile &Obj, DWARFContext &DICtx, printDatum(OS, "total vars procesed by location statistics", LocStats.NumVar); printLocationStats(OS, "vars", LocStats.VarLocStats); printLocationStats(OS, "vars (excluding the debug entry values)", - LocStats.ParamNonEntryValLocStats); + LocStats.VarNonEntryValLocStats); OS << "}\n"; LLVM_DEBUG( llvm::dbgs() << "Total Availability: " |