about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2017-07-25 11:50:24 +0100
committerGitHub <noreply@github.com>2017-07-25 11:50:24 +0100
commit7b53061d746e39a04b1a2d79dcced3f4b5f74fdb (patch)
treeed92b7f7f558e2f7fadaa5c3f2145453d66d874c /include
parentd40f29066ab9d5cb998a3bb38d2082a231c50d60 (diff)
parentc77b0052785a7ead9cb80a37a53de2229e2f0726 (diff)
downloadklee-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.h4
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;