diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2017-07-25 11:50:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 11:50:24 +0100 |
commit | 7b53061d746e39a04b1a2d79dcced3f4b5f74fdb (patch) | |
tree | ed92b7f7f558e2f7fadaa5c3f2145453d66d874c /include | |
parent | d40f29066ab9d5cb998a3bb38d2082a231c50d60 (diff) | |
parent | c77b0052785a7ead9cb80a37a53de2229e2f0726 (diff) | |
download | klee-7b53061d746e39a04b1a2d79dcced3f4b5f74fdb.tar.gz |
Merge pull request #725 from ccadar/fold
Refactored some code related to constant evaluation
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Internal/Module/KModule.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/klee/Internal/Module/KModule.h b/include/klee/Internal/Module/KModule.h index f0f20394..41253383 100644 --- a/include/klee/Internal/Module/KModule.h +++ b/include/klee/Internal/Module/KModule.h @@ -97,8 +97,8 @@ namespace klee { InstructionInfoTable *infos; std::vector<llvm::Constant*> constants; - std::map<llvm::Constant*, KConstant*> constantMap; - KConstant* getKConstant(llvm::Constant *c); + std::map<const llvm::Constant*, KConstant*> constantMap; + KConstant* getKConstant(const llvm::Constant *c); Cell *constantTable; |