diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 08:16:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 08:16:07 +0000 |
commit | a162859920beccf91af1a3a5038c9cf15700d53b (patch) | |
tree | 7495ee6365b30f83b9412bc69b4a5b59ec83096a /lib/Core/SpecialFunctionHandler.cpp | |
parent | 4177a3239de9ba23f29717bd2d13c57ffea0ead8 (diff) | |
download | klee-a162859920beccf91af1a3a5038c9cf15700d53b.tar.gz |
More ConstantExpr cleanup.
- Change Executor::evalConstant to return ConstantExpr. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/SpecialFunctionHandler.cpp')
-rw-r--r-- | lib/Core/SpecialFunctionHandler.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Core/SpecialFunctionHandler.cpp b/lib/Core/SpecialFunctionHandler.cpp index 3070da41..db673f15 100644 --- a/lib/Core/SpecialFunctionHandler.cpp +++ b/lib/Core/SpecialFunctionHandler.cpp @@ -580,8 +580,9 @@ void SpecialFunctionHandler::handleCheckMemoryAccess(ExecutionState &state, "ptr.err", executor.getAddressInfo(state, address)); } else { - ref<Expr> chk = op.first->getBoundsCheckPointer(address, - cast<ConstantExpr>(size)->getConstantValue()); + ref<Expr> chk = + op.first->getBoundsCheckPointer(address, + cast<ConstantExpr>(size)->getZExtValue()); if (!chk->isTrue()) { executor.terminateStateOnError(state, "check_memory_access: memory error", |