diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2011-03-30 11:10:48 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2011-03-30 11:10:48 +0000 |
commit | b06bb734c1c309c5011d6148ebc6caacd9663400 (patch) | |
tree | 7e9e813c4481bff59a92ff39e0af849251e5e963 /lib | |
parent | cf8e311e1255b2515c50ab5043551498703acce3 (diff) | |
download | klee-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')
-rw-r--r-- | lib/Core/Executor.cpp | 2 | ||||
-rw-r--r-- | lib/Core/SpecialFunctionHandler.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index b0af78a1..2baf61e9 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -2826,7 +2826,7 @@ void Executor::executeAlloc(ExecutionState &state, UltExpr::create(ConstantExpr::alloc(1<<31, W), size), true); if (hugeSize.first) { - klee_message("NOTE: found huge malloc, returing 0"); + klee_message("NOTE: found huge malloc, returning 0"); bindLocal(target, *hugeSize.first, ConstantExpr::alloc(0, Context::get().getPointerWidth())); } 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)); } |