diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-25 15:37:03 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-25 15:37:03 +0000 |
commit | 958e9f99e3837ea018f18799c0055d8dc8075c4d (patch) | |
tree | 174c85de58ce112bf69ce21e5f24d85a1cb71468 /lib/Core/Executor.h | |
parent | 243a217c15fdbf920f91fabfae460f957b25e0ec (diff) | |
download | klee-958e9f99e3837ea018f18799c0055d8dc8075c4d.tar.gz |
Name symbolic arrays using the 3rd argument to klee_make_symbolic,
and make sure the name is unique. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@132054 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index c37a2869..3a0fa139 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -261,7 +261,8 @@ private: ref<Expr> value /* undef if read */, KInstruction *target /* undef if write */); - void executeMakeSymbolic(ExecutionState &state, const MemoryObject *mo); + void executeMakeSymbolic(ExecutionState &state, const MemoryObject *mo, + const std::string &name); /// Create a new state where each input condition has been added as /// a constraint and return the results. The input state is included |