diff options
| author | Alasdair Armstrong | 2019-04-17 15:25:50 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2019-04-17 15:25:50 +0100 |
| commit | bcf2221ba51a3df93c96e3f4a1e779079914d68d (patch) | |
| tree | e736f9a1c39f961afda34bc4ac88a9522337a72f /lib | |
| parent | 8be892e3653472bfc0fa7b38930e20b3fcf9f81b (diff) | |
SMT: Unroll simple foreach loops
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sail.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -164,6 +164,11 @@ typedef uint64_t fbits; bool eq_bit(const fbits a, const fbits b); +static inline bool bit_to_bool(const fbits a) +{ + return (bool) a; +} + bool EQUAL(fbits)(const fbits, const fbits); typedef struct { |
