From 9061d703256f8732e9333f430daef2f69a02db5a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 31 Oct 2003 00:34:05 +0000 Subject: [PATCH] never print zero executions blocks llvm-svn: 9626 --- llvm/tools/llvm-prof/llvm-prof.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/tools/llvm-prof/llvm-prof.cpp b/llvm/tools/llvm-prof/llvm-prof.cpp index 80eb36bd63d8..672e0f692264 100644 --- a/llvm/tools/llvm-prof/llvm-prof.cpp +++ b/llvm/tools/llvm-prof/llvm-prof.cpp @@ -159,6 +159,7 @@ int main(int argc, char **argv) { unsigned BlocksToPrint = Counts.size(); if (BlocksToPrint > 20) BlocksToPrint = 20; for (unsigned i = 0; i != BlocksToPrint; ++i) { + if (Counts[i].second == 0) break; Function *F = Counts[i].first->getParent(); printf("%3d. %5.2f%% %5u/%llu\t%s() - %s\n", i+1, Counts[i].second/(double)TotalExecutions*100,