about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-14 08:16:07 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-14 08:16:07 +0000
commita162859920beccf91af1a3a5038c9cf15700d53b (patch)
tree7495ee6365b30f83b9412bc69b4a5b59ec83096a /include
parent4177a3239de9ba23f29717bd2d13c57ffea0ead8 (diff)
downloadklee-a162859920beccf91af1a3a5038c9cf15700d53b.tar.gz
More ConstantExpr cleanup.
 - Change Executor::evalConstant to return ConstantExpr.


git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/klee/Expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h
index 69f9f1df..92b322f2 100644
--- a/include/klee/Expr.h
+++ b/include/klee/Expr.h
@@ -228,7 +228,7 @@ public:
   /// given object.
   static ref<Expr> createTempRead(const Array *array, Expr::Width w);
   
-  static ref<Expr> createPointer(uint64_t v);
+  static ref<ConstantExpr> createPointer(uint64_t v);
 
   struct CreateArg;
   static ref<Expr> createFromKind(Kind k, std::vector<CreateArg> args);