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/Module/KModule.cpp | |
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/Module/KModule.cpp')
-rw-r--r-- | lib/Module/KModule.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Module/KModule.cpp b/lib/Module/KModule.cpp index 76291cdc..2982ad67 100644 --- a/lib/Module/KModule.cpp +++ b/lib/Module/KModule.cpp @@ -517,6 +517,8 @@ KFunction::KFunction(llvm::Function *_function, switch(it->getOpcode()) { case Instruction::GetElementPtr: + case Instruction::InsertValue: + case Instruction::ExtractValue: ki = new KGEPInstruction(); break; default: ki = new KInstruction(); break; |