diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2010-06-24 22:12:27 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2010-06-24 22:12:27 +0000 |
commit | 717c804da48ee71f4b5aeee3ac0ba6c62a537224 (patch) | |
tree | 374dc73d90103069466fd38de753cc3b0bd7ecc4 /lib/Core/Executor.h | |
parent | b2f49b6d8578e4df8d33933fbe5b6c951f9150f1 (diff) | |
download | klee-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.h | 2 |
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 |