diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-08 21:14:27 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-07-08 21:14:27 +0000 |
commit | 59c0dedbc949433afeac482e8243119240076026 (patch) | |
tree | ee3da2176a1923af04b61f67dd0e53b70dbde095 /lib/Core/Executor.h | |
parent | e3414c0e8cc91a35cdcae09c0af8162b8f7c2f94 (diff) | |
download | klee-59c0dedbc949433afeac482e8243119240076026.tar.gz |
Add support for InsertValue and ExtractValue instructions
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@107912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r-- | lib/Core/Executor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index e6f7c63e..d211b8ce 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -355,6 +355,9 @@ private: /// bindModuleConstants - Initialize the module constant table. void bindModuleConstants(); + template <typename TypeIt> + void computeOffsets(KGEPInstruction *kgepi, TypeIt ib, TypeIt ie); + /// bindInstructionConstants - Initialize any necessary per instruction /// constant values. void bindInstructionConstants(KInstruction *KI); |