diff options
| author | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-09-11 08:43:15 +0000 |
|---|---|---|
| committer | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-09-11 08:43:15 +0000 |
| commit | bcdb0423c530254d9f65a3f14a4676725b20e24f (patch) | |
| tree | 6b0bfbd6a18c8eaa5a1fcf3f18b35b81bc07f83c /llvm | |
| parent | f5a1ca213357c9e3d797c4fa02eb78aebc7fe16a (diff) | |
| download | bcm5719-llvm-bcdb0423c530254d9f65a3f14a4676725b20e24f.tar.gz bcm5719-llvm-bcdb0423c530254d9f65a3f14a4676725b20e24f.zip | |
Bugfix. Sorry.
llvm-svn: 81517
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Analysis/ProfileVerifierPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ProfileVerifierPass.cpp b/llvm/lib/Analysis/ProfileVerifierPass.cpp index d5348292cf7..9766da5992d 100644 --- a/llvm/lib/Analysis/ProfileVerifierPass.cpp +++ b/llvm/lib/Analysis/ProfileVerifierPass.cpp @@ -199,7 +199,7 @@ double ProfileVerifierPass::ReadOrAssert(ProfileInfo::Edge E) { double EdgeWeight = PI->getEdgeWeight(E); if (EdgeWeight == ProfileInfo::MissingValue) { errs() << "Edge " << E << " in Function " - << ProfileInfo.getFunction(E)->getNameStr() << ": "; + << ProfileInfo::getFunction(E)->getNameStr() << ": "; ASSERTMESSAGE("ASSERT:Edge has missing value"); return 0; } else { |

