source: src/examples/gc_no_raii/bug-repro/blockers/file_scope.c@ 96fc67b

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 96fc67b was e8b15358, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

new set of bug repros for resolver bugs

  • Property mode set to 100644
File size: 435 bytes
Line 
1
2#include <stdbool.h>
3#include <stdlib>
4
5#define POOL_SIZE_EXP 24
6#define POOL_SIZE_BYTES 0x1 << POOL_SIZE_EXP
7#define POOL_PTR_MASK ~(POOL_SIZE_BYTES - 1)
8
9#define CARDS_SIZE_EXP 12
10#define CARDS_SIZE_BYTES 0x1 << CARDS_SIZE_EXP
11#define CARDS_OFFSET_MASK (~(CARDS_SIZE_BYTES - 1)) & (POOL_SIZE_BYTES - 1)
12#define CARDS_COUNT POOL_SIZE_BYTES / CARDS_SIZE_BYTES
13
14struct card_table_t
15{
16 size_t count;
17 void* cards_start[CARDS_COUNT];
18};
Note: See TracBrowser for help on using the repository browser.