about summary refs log tree commit diff homepage
path: root/lib/Core/Executor.h
diff options
context:
space:
mode:
authorPeter Collingbourne <peter@pcc.me.uk>2010-06-24 22:12:27 +0000
committerPeter Collingbourne <peter@pcc.me.uk>2010-06-24 22:12:27 +0000
commit717c804da48ee71f4b5aeee3ac0ba6c62a537224 (patch)
tree374dc73d90103069466fd38de753cc3b0bd7ecc4 /lib/Core/Executor.h
parentb2f49b6d8578e4df8d33933fbe5b6c951f9150f1 (diff)
downloadklee-717c804da48ee71f4b5aeee3ac0ba6c62a537224.tar.gz
Use LLVM's TargetData::getTypeSizeInBits to determine type bitwidth instead of our own implementation
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@106800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Core/Executor.h')
-rw-r--r--lib/Core/Executor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h
index c8211854..e6f7c63e 100644
--- a/lib/Core/Executor.h
+++ b/lib/Core/Executor.h
@@ -447,6 +447,8 @@ public:
 
   virtual void getCoveredLines(const ExecutionState &state,
                                std::map<const std::string*, std::set<unsigned> > &res);
+
+  Expr::Width getWidthForLLVMType(const llvm::Type *type) const;
 };
   
 } // End klee namespace