diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2017-02-22 13:36:04 +0100 |
---|---|---|
committer | Jiri Slaby <jirislaby@gmail.com> | 2017-02-22 13:38:52 +0100 |
commit | 8cc3b11b853fb8a1870bb5945a042653f0c7f49f (patch) | |
tree | 4cc9bff5172e066ed6e246a9f39479a30bd3bc9f /lib/Solver | |
parent | 62ee2e574b9f920e6679c91da25f8941552277d9 (diff) | |
download | klee-8cc3b11b853fb8a1870bb5945a042653f0c7f49f.tar.gz |
klee: remove use of deprecated 'register'
New compilers warn about using 'register' as follows: ConstantDivision.cpp:66:3: warning: 'register' storage class specifier is deprecated and incompatible with C++1z [-Wdeprecated-register] Remove the register specifier -- the compilers are clever enough to know what to do. Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Diffstat (limited to 'lib/Solver')
-rw-r--r-- | lib/Solver/ConstantDivision.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Solver/ConstantDivision.cpp b/lib/Solver/ConstantDivision.cpp index c8f8f3d5..e62e1354 100644 --- a/lib/Solver/ConstantDivision.cpp +++ b/lib/Solver/ConstantDivision.cpp @@ -40,7 +40,7 @@ namespace klee { #define LOG2_CEIL(x) ( 32 - ldz(x - 1) ) /* ones(x) -- counts the number of bits in x with the value 1 */ -static uint32_t ones( register uint32_t x ) { +static uint32_t ones(uint32_t x) { x -= ((x >> 1) & 0x55555555); x = (((x >> 2) & 0x33333333) + (x & 0x33333333)); x = (((x >> 4) + x) & 0x0f0f0f0f); @@ -51,7 +51,7 @@ static uint32_t ones( register uint32_t x ) { } /* ldz(x) -- counts the number of leading zeroes in a 32-bit word */ -static uint32_t ldz( register uint32_t x ) { +static uint32_t ldz(uint32_t x) { x |= (x >> 1); x |= (x >> 2); x |= (x >> 4); @@ -62,8 +62,8 @@ static uint32_t ldz( register uint32_t x ) { } /* exp_base_2(n) -- 2^n computed as an integer */ -static uint32_t exp_base_2( register int32_t n ) { - register uint32_t x = ~n & (n - 32); +static uint32_t exp_base_2(int32_t n) { + uint32_t x = ~n & (n - 32); x = x >> 31; return( x << n ); } |