diff options
Diffstat (limited to 'include/klee/Internal/Module/KModule.h')
-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; |