diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-13 23:58:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-13 23:58:27 +0000 |
commit | 7fe8f20ef3b4259fb289dcf5efcff58111364838 (patch) | |
tree | f23a6946df1dc3057cc1d041f515ddca882ab9b7 /lib/Core/Executor.cpp | |
parent | f5761fa9cde863f1684f847bb3ca2827d094fcae (diff) | |
download | klee-7fe8f20ef3b4259fb289dcf5efcff58111364838.tar.gz |
Switch to using constant arrays for non-symbolic objects.
- Currently uses a dumb implementation which keeps the old flushing architecture, but converts to a constant array when the first ReadExpr is created. - Temporary --use-constant-arrays switch can be used to disable for testing. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/Executor.cpp')
-rw-r--r-- | lib/Core/Executor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index 30c30928..39c6d78a 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -2952,8 +2952,8 @@ void Executor::executeMakeSymbolic(ExecutionState &state, static unsigned id = 0; const Array *array = new Array("arr" + llvm::utostr(++id), mo->size); - ObjectState *os = bindObjectInState(state, mo, false, array); - state.addSymbolic(mo, os->updates.root); + bindObjectInState(state, mo, false, array); + state.addSymbolic(mo, array); std::map< ExecutionState*, std::vector<SeedInfo> >::iterator it = seedMap.find(&state); |