diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-11-29 02:13:21 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-11-29 02:13:21 +0000 |
commit | 9644f84280ea5f5d6c94161860e7f1780e27f8bd (patch) | |
tree | 7a20d1267267176ce74f8f0f4a9b79d062ce4fc3 /lib/Core/ExecutorTimers.cpp | |
parent | 3c844fae79cbc71e365851e7978ee4767880f66b (diff) | |
download | klee-9644f84280ea5f5d6c94161860e7f1780e27f8bd.tar.gz |
Updates for LLVM 3.1.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@145365 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 8934a6cd..2fda5cba 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->getNameStr() << "',"; + *os << "('" << sfIt->kf->function->getName().str() << "',"; if (next == es->stack.end()) { *os << es->prevPC->info->line << "), "; } else { |