diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-22 03:41:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-22 03:41:57 +0000 |
commit | 11d1cbae8f642953c5d60faa9a02c9630930461b (patch) | |
tree | 0a7e280a76cd59d1d619d6059eba0a0e3fed5632 /include | |
parent | 93109234b9e7c5ba50441bbfab3dad02a77f8787 (diff) | |
download | klee-11d1cbae8f642953c5d60faa9a02c9630930461b.tar.gz |
Remove unnecessary width field, the width is part of the APInt.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 49d612cc..fea269e8 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -299,15 +299,12 @@ public: private: llvm::APInt value; - ConstantExpr(uint64_t v, Width w) : value(w, v), width(w) {} - -public: - Width width; + ConstantExpr(uint64_t v, Width w) : value(w, v) {} public: ~ConstantExpr() {}; - Width getWidth() const { return width; } + Width getWidth() const { return value.getBitWidth(); } Kind getKind() const { return Constant; } unsigned getNumKids() const { return 0; } @@ -335,7 +332,8 @@ public: int compareContents(const Expr &b) const { const ConstantExpr &cb = static_cast<const ConstantExpr&>(b); - if (width != cb.width) return width < cb.width ? -1 : 1; + if (getWidth() != cb.getWidth()) + return getWidth() < cb.getWidth() ? -1 : 1; if (value == cb.value) return 0; return value.ult(cb.value) ? -1 : 1; |