mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 12:11:23 +00:00
compiler optimization and fixes to unit tests
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
commit
18ea547cea
85 changed files with 1156 additions and 11585 deletions
|
@ -96,7 +96,7 @@ void * small_object_allocator::allocate(size_t size) {
|
|||
return memory::allocate(size);
|
||||
#endif
|
||||
m_alloc_size += size;
|
||||
if (size > SMALL_OBJ_SIZE - (1 << PTR_ALIGNMENT))
|
||||
if (size > SMALL_OBJ_SIZE - (1 << PTR_ALIGNMENT))
|
||||
return memory::allocate(size);
|
||||
#ifdef Z3DEBUG
|
||||
size_t osize = size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue