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 /include | |
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 'include')
-rw-r--r-- | include/klee/Expr.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 0759f953..a3a28b83 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -215,7 +215,6 @@ public: static void printKind(std::ostream &os, Kind k); static void printWidth(std::ostream &os, Expr::Width w); - static Width getWidthForLLVMType(const llvm::Type *type); /// returns the smallest number of bytes in which the given width fits static inline unsigned getMinBytesForWidth(Width w) { |