about summary refs log tree commit diff homepage
path: root/include
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-25 00:42:11 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-25 00:42:11 +0000
commit69a7598ab92a5fcd3573487677d7681552c1ba4c (patch)
treead5caa74b419933b3a97f768242c06364dcc1659 /include
parent0a6bd94fc47543bf91a98b265e2bedbe3ccb77a3 (diff)
downloadklee-69a7598ab92a5fcd3573487677d7681552c1ba4c.tar.gz
Remove some more uses of getConstantValue.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@74149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/klee/util/ExprRangeEvaluator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/klee/util/ExprRangeEvaluator.h b/include/klee/util/ExprRangeEvaluator.h
index 61444c76..34b85520 100644
--- a/include/klee/util/ExprRangeEvaluator.h
+++ b/include/klee/util/ExprRangeEvaluator.h
@@ -93,7 +93,7 @@ template<class T>
 T ExprRangeEvaluator<T>::evaluate(const ref<Expr> &e) {
   switch (e->getKind()) {
   case Expr::Constant:
-    return T(cast<ConstantExpr>(e)->getConstantValue());
+    return T(cast<ConstantExpr>(e));
 
   case Expr::NotOptimized: 
     break;