mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
enable non-expression bodies of quantifiers to fix #1667
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
88ead235f0
commit
4547f2c001
2 changed files with 7 additions and 12 deletions
|
@ -46,7 +46,6 @@ Revision History:
|
|||
#endif
|
||||
|
||||
|
||||
#if 1
|
||||
#include <immintrin.h>
|
||||
|
||||
#if defined(__GNUC__)
|
||||
|
@ -69,14 +68,6 @@ inline uint64_t _trailing_zeros64(uint64_t x) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#else
|
||||
|
||||
inline unsigned _trailing_zeros32(unsigned x) {
|
||||
unsigned r = 0;
|
||||
for (; 0 == (x & 1) && r < 32; ++r, x >>= 1);
|
||||
return r;
|
||||
}
|
||||
#endif
|
||||
|
||||
#define _bit_min(x, y) (y + ((x - y) & ((int)(x - y) >> 31)))
|
||||
#define _bit_max(x, y) (x - ((x - y) & ((int)(x - y) >> 31)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue