about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-03 03:07:32 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-03 03:07:32 +0000
commitcd97597b4fade91b89566f92f4f951609958ffb5 (patch)
tree308968f06fff49abacad280d8e2e746e145bd3cf /include
parent520fa11b375e112fa4caeef7ae9ed0e82cca4378 (diff)
downloadklee-cd97597b4fade91b89566f92f4f951609958ffb5.tar.gz
Update ConstantExpr::fromMemory to return a ref<Expr>.
 - This function should go away...


git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72751 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 f0adc42d..49dc65ec 100644
--- a/include/klee/Expr.h
+++ b/include/klee/Expr.h
@@ -321,7 +321,7 @@ public:
 
   virtual unsigned computeHash();
   
-  static ref<ConstantExpr> fromMemory(void *address, Width w);
+  static ref<Expr> fromMemory(void *address, Width w);
   void toMemory(void *address);
 
   static ref<Expr> alloc(uint64_t v, Width w) {