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 /lib/Expr | |
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 'lib/Expr')
-rw-r--r-- | lib/Expr/Expr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Expr/Expr.cpp b/lib/Expr/Expr.cpp index 2d41a579..1615127a 100644 --- a/lib/Expr/Expr.cpp +++ b/lib/Expr/Expr.cpp @@ -164,7 +164,7 @@ unsigned Expr::computeHash() { } unsigned ConstantExpr::computeHash() { - hashValue = getConstantValue() ^ (width * MAGIC_HASH_CONSTANT); + hashValue = getConstantValue() ^ (getWidth() * MAGIC_HASH_CONSTANT); return hashValue; } @@ -336,7 +336,7 @@ ref<Expr> ConstantExpr::fromMemory(void *address, Width width) { } void ConstantExpr::toMemory(void *address) { - switch (width) { + switch (getWidth()) { default: assert(0 && "invalid type"); case Expr::Bool: *(( uint8_t*) address) = getConstantValue(); break; case Expr::Int8: *(( uint8_t*) address) = getConstantValue(); break; |