diff options
author | Martin Nowack <martin_nowack@tu-dresden.de> | 2017-10-29 21:58:53 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2018-02-18 12:49:41 +0000 |
commit | faf2494ac3a5dec057384fd413e0c2a024a5347b (patch) | |
tree | 3b6c137f2eafc1698db01bda2e81e9395e110860 /lib | |
parent | 46b144492c54a14004b0a982948610ff47f72743 (diff) | |
download | klee-faf2494ac3a5dec057384fd413e0c2a024a5347b.tar.gz |
Added comment for getPointerWidth
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Core/Context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Core/Context.h b/lib/Core/Context.h index af1ce8e7..6c6eb936 100644 --- a/lib/Core/Context.h +++ b/lib/Core/Context.h @@ -37,6 +37,7 @@ namespace klee { bool isLittleEndian() const { return IsLittleEndian; } + /// Returns width of the pointer in bits Expr::Width getPointerWidth() const { return PointerWidth; } }; |