diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-25 05:17:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-25 05:17:51 +0000 |
commit | f8f6c637b24f11703a9991361df8c4260242dbd9 (patch) | |
tree | 717be1833e7890a7221396695562ba75d36defbe /lib/Core/StatsTracker.cpp | |
parent | 6fdbb198e201ae935e19fb824a88f168f07c928a (diff) | |
download | klee-f8f6c637b24f11703a9991361df8c4260242dbd9.tar.gz |
(llvm up) Update for llvm::Value getName() change.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/StatsTracker.cpp')
-rw-r--r-- | lib/Core/StatsTracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/StatsTracker.cpp b/lib/Core/StatsTracker.cpp index 7a87024d..3437e10c 100644 --- a/lib/Core/StatsTracker.cpp +++ b/lib/Core/StatsTracker.cpp @@ -464,7 +464,7 @@ void StatsTracker::writeIStats() { for (Module::iterator fnIt = m->begin(), fn_ie = m->end(); fnIt != fn_ie; ++fnIt) { if (!fnIt->isDeclaration()) { - of << "fn=" << fnIt->getName() << "\n"; + of << "fn=" << fnIt->getNameStr() << "\n"; for (Function::iterator bbIt = fnIt->begin(), bb_ie = fnIt->end(); bbIt != bb_ie; ++bbIt) { for (BasicBlock::iterator it = bbIt->begin(), ie = bbIt->end(); @@ -497,7 +497,7 @@ void StatsTracker::writeIStats() { if (fii.file!="" && fii.file!=sourceFile) of << "cfl=" << fii.file << "\n"; - of << "cfn=" << f->getName() << "\n"; + of << "cfn=" << f->getNameStr() << "\n"; of << "calls=" << csi.count << " "; of << fii.assemblyLine << " "; of << fii.line << "\n"; |