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/ExecutorTimers.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/ExecutorTimers.cpp')
-rw-r--r-- | lib/Core/ExecutorTimers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/ExecutorTimers.cpp b/lib/Core/ExecutorTimers.cpp index 51792e0d..0c274d5c 100644 --- a/lib/Core/ExecutorTimers.cpp +++ b/lib/Core/ExecutorTimers.cpp @@ -155,7 +155,7 @@ void Executor::processTimers(ExecutionState *current, ++next; for (ExecutionState::stack_ty::iterator sfIt = es->stack.begin(), sf_ie = es->stack.end(); sfIt != sf_ie; ++sfIt) { - *os << "('" << sfIt->kf->function->getName() << "',"; + *os << "('" << sfIt->kf->function->getNameStr() << "',"; if (next == es->stack.end()) { *os << es->prevPC->info->line << "), "; } else { |