diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-07 17:48:17 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-07 17:48:17 +0000 |
commit | 08e5f32e11923cdaa46f68c8cc5de1ff9e5036d0 (patch) | |
tree | 0213c1918e962ce2a81853204b6adc0c3f3485a5 /include | |
parent | 1391a42343d7a597b9ee413551ba013218d21b8c (diff) | |
download | klee-08e5f32e11923cdaa46f68c8cc5de1ff9e5036d0.tar.gz |
Make sure that ExprEvaluator will fold constant expressions (klee never creates
these, but the parser can). git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73033 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/util/ExprEvaluator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/klee/util/ExprEvaluator.h b/include/klee/util/ExprEvaluator.h index be98942d..739e51e6 100644 --- a/include/klee/util/ExprEvaluator.h +++ b/include/klee/util/ExprEvaluator.h @@ -18,6 +18,7 @@ namespace klee { protected: Action evalRead(const UpdateList &ul, unsigned index); Action visitRead(const ReadExpr &re); + Action visitExpr(const Expr &e); Action protectedDivOperation(const BinaryExpr &e); Action visitUDiv(const UDivExpr &e); |