diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 21:20:11 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-14 21:20:11 +0000 |
commit | 2ad9c2b4a298c04bcbddc80b50f681e712dfbeba (patch) | |
tree | d10917056c1d76bf8cffba92d7d0a89af135e9ac /include | |
parent | c753b579533997ba1ebc4c1aeeb22d474681ea94 (diff) | |
download | klee-2ad9c2b4a298c04bcbddc80b50f681e712dfbeba.tar.gz |
Kill off ExtractExpr::createByteOff.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73348 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/klee/Expr.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/klee/Expr.h b/include/klee/Expr.h index 92b322f2..9df9a699 100644 --- a/include/klee/Expr.h +++ b/include/klee/Expr.h @@ -792,9 +792,6 @@ public: /// Creates an ExtractExpr with the given bit offset and width static ref<Expr> create(ref<Expr> e, unsigned bitOff, Width w); - /// Creates an ExtractExpr with the given byte offset and width - static ref<Expr> createByteOff(ref<Expr> e, unsigned byteOff, Width w=Expr::Int8); - Width getWidth() const { return width; } Kind getKind() const { return Extract; } |