about summary refs log tree commit diff homepage
path: root/lib/Core/SpecialFunctionHandler.cpp
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2011-03-30 11:10:48 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2011-03-30 11:10:48 +0000
commitb06bb734c1c309c5011d6148ebc6caacd9663400 (patch)
tree7e9e813c4481bff59a92ff39e0af849251e5e963 /lib/Core/SpecialFunctionHandler.cpp
parentcf8e311e1255b2515c50ab5043551498703acce3 (diff)
downloadklee-b06bb734c1c309c5011d6148ebc6caacd9663400.tar.gz
Fixed some typos.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@128533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/SpecialFunctionHandler.cpp')
-rw-r--r--lib/Core/SpecialFunctionHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Core/SpecialFunctionHandler.cpp b/lib/Core/SpecialFunctionHandler.cpp
index 2ef80acc..1a0ca406 100644
--- a/lib/Core/SpecialFunctionHandler.cpp
+++ b/lib/Core/SpecialFunctionHandler.cpp
@@ -511,7 +511,7 @@ void SpecialFunctionHandler::handleGetErrno(ExecutionState &state,
                                             std::vector<ref<Expr> > &arguments) {
   // XXX should type check args
   assert(arguments.size()==0 &&
-         "invalid number of arguments to klee_get_obj_size");
+         "invalid number of arguments to klee_get_errno");
   executor.bindLocal(target, state,
                      ConstantExpr::create(errno, Expr::Int32));
 }